Answers for "psql get table data types"

SQL
0

psql get table data types

SELECT
    column_name,
    data_type
FROM
    information_schema.columns
WHERE
    table_name = 'table_name';
Posted by: Guest on October-26-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language