sql查询语句例子 sql查询例子



文章插图
sql查询语句例子 sql查询例子

文章插图
1.查询外键信息
select * from INFORMATION_SCHEMA.KEY_COLUMN_USAGE where REFERENCED_TABLE_NAME=’t_sys_application’
2.查找所有表的语句
select table_name from information_schema.tables where table_schema=’当前数据库’;