1.查询数据库中某个字段存在哪些表中
Select a.name as columns,b.name as TableName from syscolumns aleft join sysobjects b on a.id = b.idWhere a.name ='order_id'