SELECT table_name 表名, table_comment 表说明
FROM information_schema.TABLES
WHERE table_name in (
select table_name
from information_schema.columns
where table_schema='shanwei' )
ORDER BY table_name
;
select COLUMN_NAME 字段名,column_type 字段类型,is_nullable `是否为空`,
column_key 约束 ,column_comment 注释 ,table_name 表名
from information_schema.columns a
where table_schema='shanwei'
order by table_name
;
为人:谦逊、激情、博学、审问、慎思、明辨、 笃行
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
态度:道阻且长,行则将至;行而不辍,未来可期
转载请标注出处!

















