Sql server查询表与字段

小豆丁 1年前 ⋅ 184 阅读
select * from sysobjects where xtype='U';  --当前所有的数据表

select * from sysobjects where name like '%MealOrder%' and xtype='U' --模糊查询表名

SELECT * FROM information_schema.columns WHERE column_name LIKE '%subcompanyid%' and table_name in (SELECT table_name FROM information_schema.columns WHERE column_name LIKE '%userno%')  --模糊查询多表相同字段


全部评论: 0

    我有话说: