Answers for "list column names of multiple tables psql"

SQL
0

list column names of multiple tables psql

SELECT column_name , table_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers' or TABLE_NAME = N'Customers1' or TABLE_NAME = N'Customers'
Posted by: Guest on January-18-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language