I\'m trying to run the following PHP script to do a simple database query:
$db_host = \"localhost\"; $db_name = \"showfinder\"; $username = \"user\"; $passwo
You must write schema name and table name in qutotation mark. As below:
select * from "schemaName"."tableName";