多項(xiàng)選擇題
A.select * from products where vend_id=1002 or vend_id=1003 B.select * from products where vend_id in(1002,1003); C.select * from products where vend_id not in(1004,1005); D.select * from products where vend_id=1002and vend_id=1003
A.db1/student B.db1.student C.db1_student D.db1&student
A.聲明后必須打開游標(biāo)以供使用 B.結(jié)束游標(biāo)使用時(shí),必須閉游標(biāo) C.使用游標(biāo)前必須聲明它 D.游標(biāo)只能用于存儲(chǔ)過程和函數(shù)
A.兩者都可以刪除指定條目的記錄 B.前者可以刪除指定條目的記錄,后者不能 C.兩者都反回被刪除記錄的數(shù)目 D.前者返回被刪除記錄數(shù)目,后者不返回
A.是一個(gè)數(shù)據(jù)清單 B.是按一定組織方式存儲(chǔ)在一起的相關(guān)數(shù)據(jù)的集合 C.是一個(gè)數(shù)組 D.是程序化的電子表格
A.被定義為NOTNULL的列不可以被更新為NULL B.不能在一個(gè)子查詢中更新一個(gè)表,同時(shí)從同一個(gè)表中選擇 C.不能把ORDERBY或LIMIT與多表語(yǔ)法的UPDATE語(yǔ)句同時(shí)使用 D.如果把一列設(shè)置為其當(dāng)前含有的值,則該列不會(huì)更新
A.每一個(gè)Excel數(shù)據(jù)庫(kù)對(duì)應(yīng)一個(gè)工作簿文件 B.一列為一個(gè)字段,描述實(shí)體對(duì)象的屬性 C.Excel數(shù)據(jù)庫(kù)屬于“關(guān)系數(shù)據(jù)模型”,又稱為關(guān)系型數(shù)據(jù)庫(kù) D.一行為一個(gè)記錄,描述某個(gè)實(shí)體對(duì)象
A.!= B.<> C.== D.>=
A.MS_SQLSERVER B.Oracle C.IMS D.DB2
A.行在表中的順序無(wú)關(guān)緊要 B.表中任意兩行的值不能相同 C.列在表中的順序無(wú)關(guān)緊要 D.表中任意兩列的值不能相同
A.select * from orders where ordername is not null; B.select * from orders where ordername<>null; C.select * from orders where ordername is null; D.select * from orders where ordername not is null;