postgresql 笔记

postgresql 笔记

一、能执行sql的地方
pgadmin3
在有数据表的地方点右键script->select script
二、查询数据库名字
SELECT datname FROM pg_database;
三、查询数据表的名字
select * from pg_class where relname = 'jzl_video_table'
这个查出来表名和很多乱七八糟的东西
select relname from pg_class where relname = 'jzl_video_table'
上面这个就查出来表名
select count(*) from pg_class where relname = 'jzl_video_table'
上面这个如果查出来有jzl_video_table这个表名,返回1,不然返回0

你可能感兴趣的:(postgresql 笔记)