資源描述:
《SQL語(yǔ)句簡(jiǎn)單查詢.doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、--模糊查詢--5、查詢所有梁姓家庭成員(like)select*fromtb_userswhereunamelike'梁%'--6、查詢?nèi)粘J罩П碇兴衦menu即備注含‘去’字的記錄select*fromtb_inoutinfowherermenulike'%去%'--7、查詢?nèi)粘J罩П碇?月到3月之間的收支情況(between)select*fromtb_inoutinfowheremonth(rdate)between2and3--8、查詢?nèi)粘J罩П碇?000到5000之間金額的收支記錄select*fr
2、omtb_inoutinfowherermoneybetween1000and5000--9、查詢?nèi)粘J罩П碇泄べY和獎(jiǎng)金記錄,即xid為1,2的記錄select*fromtb_inoutinfowherexidin(1,2)--聚合函數(shù)--10、求存款額,即對(duì)金額求和selectsum(rmoney)as總收入fromtb_inoutinfowherermoney>0--11、求總支出,即為金額為負(fù)數(shù)的求和selectsum(rmoney)as總支出fromtb_inoutinfowherermoney<0sel
3、ect*from(selectsum(rmoney)as總收入fromtb_inoutinfowherermoney>0)ajoin(selectsum(rmoney)as總支出fromtb_inoutinfowherermoney<0)bon1=1--12、求梁山伯今年發(fā)了幾次工資,即為uid為1且xid為1的記錄記數(shù)select*fromtb_inoutinfowhereuid=1andxid=1--13、最大收入額,即求最大值selectmax(rmoney)fromtb_inoutinfo--分組--14
4、、求每個(gè)人的財(cái)務(wù)金額和,即根據(jù)uid分組后求rmoney的和selectuid,sum(rmoney)fromtb_inoutinfogroupbyuid--15、求每個(gè)人的支出金額,即條件為rmoney為負(fù)數(shù),根據(jù)uid分組求rmoney的和selectuid,sum(rmoney)fromtb_inoutinfowherermoney<0groupbyuid--16、求每個(gè)人的收入金額,但只顯示超過(guò)10000元,即條件為rmoney大于0,根據(jù)uid分組求和,并有having篩選大于10000的selectu
5、idas成員編號(hào),sum(rmoney)as金額fromtb_inoutinfowherermoney>0groupbyuidhavingsum(rmoney)>10000--17、求入支出項(xiàng)目個(gè)數(shù),即在項(xiàng)目表中按收支類型分組,再計(jì)數(shù)selectxid,sum(rmoney)fromtb_inoutinfogroupbyxid--聯(lián)表查詢--18、在收支項(xiàng)目表和日常收支表中查詢項(xiàng)目編號(hào),項(xiàng)目名稱,收支類型,收支金額selectrid,xname,xtype,rmoneyfromtb_inoutinfoaleftj
6、ointb_inoutfieldbona.xid=b.xid--19、在成員表和日常收支表中查詢家庭角色,姓名,金額,操作日期selecta.uid,uname,upart,rmoney,rdatefromtb_usersajointb_inoutinfobona.uid=b.uid--20、在收支項(xiàng)目表和日期收支表,成員表中查詢姓名,項(xiàng)目名稱,收支金額selectuname,xname,xtype,rmoney,rdatefromtb_usersajointb_inoutinfobona.uid=b.uidjo
7、intb_inoutfieldconb.xid=c.xid