Oxf*_*ist 10 postgresql table
我知道\d table_name列出了该表的所有列,但是有没有办法按字母顺序列出它们?
\d table_name
Cra*_*ger 25
通常,使用information_schema:
information_schema
SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'blah' ORDER BY column_name ASC;
归档时间:
11 年,9 月 前
查看次数:
14252 次
最近记录: