Answers for "select columns postgres"

SQL
0

select columns postgres

SELECT *
FROM table_name
WHERE false;

Because of the false criteria for rows, only the columns will get displayed.
Posted by: Guest on March-16-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language