826

导航

2014年1月2日 #

sql对表查询常用方法归纳

摘要: 1.查询 条件为 某个字段 对应多个不同的值时select * from otim where sheetid in(1,2,3)或者select * from otim where sheetid=1 or sheetid=2 or sheetid=3 阅读全文

posted @ 2014-01-02 11:11 826 阅读(343) 评论(0) 推荐(0) 编辑

sql对整个数据库结构的常用查询语句

摘要: 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' 阅读全文

posted @ 2014-01-02 10:22 826 阅读(231) 评论(0) 推荐(0) 编辑