搜索结果
查询Tags标签: attnum,共有 4条记录-
mysql、postgresql查询表字所有字段
1、mysql查询表字所有字段SHOW FULL COLUMNS FROM table_name;解释: Field :字段名 Type:字段类型 Collation:字符集(mysql 5.0以上有) Null :是否可以为NULL Key:索引(PRI,unique,index) Default:缺省值 Extra:额外(是否 auto_increment) Privileges:权限 C…
2021/12/22 2:23:44 人评论 次浏览 -
mysql、postgresql查询表字所有字段
1、mysql查询表字所有字段SHOW FULL COLUMNS FROM table_name;解释: Field :字段名 Type:字段类型 Collation:字符集(mysql 5.0以上有) Null :是否可以为NULL Key:索引(PRI,unique,index) Default:缺省值 Extra:额外(是否 auto_increment) Privileges:权限 C…
2021/12/22 2:23:44 人评论 次浏览 -
postgreSQL常用sql
查看表字段注释Select a.attnum,(select description from pg_catalog.pg_description where objoid=a.attrelid and objsubid=a.attnum) as descript,a.attname,pg_catalog.format_type(a.atttypid,a.atttypmod) as data_type from pg_catalog.pg_attribute a where 1=1 …
2021/8/31 19:06:13 人评论 次浏览 -
postgreSQL常用sql
查看表字段注释Select a.attnum,(select description from pg_catalog.pg_description where objoid=a.attrelid and objsubid=a.attnum) as descript,a.attname,pg_catalog.format_type(a.atttypid,a.atttypmod) as data_type from pg_catalog.pg_attribute a where 1=1 …
2021/8/31 19:06:13 人评论 次浏览