欢迎来到天天文库
浏览记录
ID:46847834
大小:158.50 KB
页数:32页
时间:2019-11-28
《SQL基础查询1》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、--查询全部列--机构基本资料表所有数据信息select*fromItprofile--根据top关键字返回行数--查询机构基本资料表中前一百条数据selecttop100*fromItprofile--查询机构基本资料表中百分之一的数据selecttop1percent*fromItprofile--去除重复行--查询资产负债表中的公司代码(不重复)selectdistinctcompanycodefromcbsheet--查询部分列--更新Fl期,机构代码,机构全称,机构简称selectItprofile—自定义列名selectupdate
2、dmteas更新日期,companycodeas机构代companynameas机构名称,Itprofilelas机构简称fromItprofileselect更新口M^=updatedatef^TL^^5^=companycode,机构名称=companyn3in6机构简称=1tprofilelfromItprofile--case...when—查询资产表在机构代码为的资产合计的值,将数据化为元selectCompanyCodezReportDate,Reportstyle,ReportUnitrPublishDate,CBSheet46,
3、newdate=(caseReportUnitwhen'兀'then1when7U1then1000when'万元'then10000when'方万'then1000000else1end)*CBSheet46fromcbsheet--where子句--查询机构代码是‘80108978’的信息select更新口M^=updatedatez^TL^^5^=companycode,机构名称=companyn3in0,机构简称=ItprofileifromItprofilewherecompanycode=*801089781—查询更新日期大于*20
4、10-01-01'的所有数据信息select★fromItprofilewhereupdatedate>12010-01-01*--查询机构代码在floooooio!到vooooiocr之间的所有数据信息select*fromItprofilewherecompanycode>=110000010*andcompanycode<=*100001001--使用between......andselect*fromItprofile--where了句中使用or一在机构资料表中查询公司代码在1100000101到70000100,之间或者更新日期大于
5、*2010-04-01*的所有数据信息select*fromItprofilewherecompanycode>=1100000101andcompanycode<=110000100*orupdatedate>12010-04-01'—在机构资料表中查询更新口期大于*2010-04-01*并且公司代码小于1100001001或者在110000100'和1100002001之间select*fromItprofilewhereupdatedate>12010-04-01*andcompanycode<1100001001orcompanycod
6、ebetween1100001001and1100002001select*fromItprofilewhereupdatedate>*2010-04-011and(companycode<1100001001orcompanycodebetween110000100TandT10000200T)—where子句中模糊查询陀J匚、1[]1[A]1--查询公司名称中含有'中国,的所有数据信息select*fromItprofilewherecompanynamelike‘%中国%’--查询公司名称前两个字是'中国,的信息select*fromIt
7、profilewherecompanynamelike'中国%’--查询公司代码前位是''的所有数据信息select*fromItprofilewherecompanycodelike1100000%1select*fromItprofilewherecompanycodelike1100000‘--查出公司代码前位是、,第七位是-5之间的数据信息第八位是所有select*fromItprofilewherecompanycodelike1100000[3-5]_!--查出公司代码前位是',第七位不是-5之间的数据信息第八位是所select*f
8、romItprofile--空值判断isnull--机构简称为空select*fromItprofilewhereItprofilelisnull--
此文档下载收益归作者所有