PHP 8.5.0 Beta 1 available for testing

Voting

: min(six, three)?
(Example: nine)

The Note You're Voting On

74012 dot 2773 at compuserve dot com
21 years ago
for just a list of tables, this works with postgresql-7.2.1:

function pg_list_tables($db) {
$sql = "select relname from pg_stat_user_tables order by relname;";
return pg_query($db, $sql);
}

<< Back to user notes page

To Top