postgres下一些查询有时候是不同于其他数据库的。 查询版本:psql –version 进入数据库后,使用下面的方法进行查询。
(1)显示SQL语句执行时间 \timing on 退出数据库失效 (2)显示postgres中所有的表总数(包含数据库自带的)
select count(*) from pg_tables; 安装好数据库系统自带为58个。
(3)显示用户生成的数据库列表 \
d (4)显示某个表列属性 \d tablename (5)删除表中所有数据 delete from tablename –写入日志 Truncate Table tablename –不写入日志 TRUNCATE TABLE