「postgresql入門」カラム名一覧を取得するコード

2017年11月21日

SQL構文
SELECT
*
FROM
information_schema.columns
WHERE
table_name = 'table_name’
ORDER BY
ordinal_position;

PostgreSQL

Posted by arkgame