#25/檢查數(shù)據(jù)庫對象是否存在:先執(zhí)行子查詢在執(zhí)行子查詢外
#exists 檢查數(shù)據(jù)庫對象是否存在
#not exists 檢查數(shù)據(jù)庫對象是否不存在
#in 包含 NOT 不包含
#is null 判斷是否為空
#is not null 判斷是否不為空
#
select * from score #查詢成績表
WHERE #查詢條件
EXISTS #檢查數(shù)據(jù)庫對象是否存在,
(SELECT num FROM score WHERE num>80);#num>80的值存在與成績表,為true,則顯示表數(shù)據(jù),如果不存在,則為false,為空
|
|