多項(xiàng)選擇題關(guān)于insert語句下列說法正確的是()

A.insert into表名values(字段名1對(duì)應(yīng)的值);
B.insert into表名values(字段名1對(duì)應(yīng)的值,字段名2對(duì)應(yīng)值);
C.insert into表名(字段名1)value(字段名1對(duì)應(yīng)的值);
D.insert into表名(字段名1,字段名2)values(字段名1對(duì)應(yīng)的值,字段名2對(duì)應(yīng)值);


您可能感興趣的試卷

你可能感興趣的試題

2.多項(xiàng)選擇題語句select * from products where prod_name like’%se%’結(jié)果集包括()

A.檢索products表中prod_name字段以’se’結(jié)尾的數(shù)據(jù)
B.檢索products表中prod_name字段以’se’開關(guān)的數(shù)據(jù)
C.檢索products表中prod_name字段包含’se’的數(shù)據(jù)
D.檢索products表中prod_name字段不包含’se’的數(shù)據(jù)

3.多項(xiàng)選擇題對(duì)于顯示操作以下說法正確的是()

A.show database;顯示所有數(shù)據(jù)庫
B.show table;顯示所有表
C.show tables;顯示所有表
D.show databases;顯示所有數(shù)據(jù)庫

4.多項(xiàng)選擇題以下哪項(xiàng)是事務(wù)特性()

A.獨(dú)立性
B.持久性
C.原子性
D.一致性

5.多項(xiàng)選擇題您需要顯示從2009年1月1日到2009年12月31日雇傭的所有職員的姓名和雇傭日期。職員信息表tblEmployees包含列Name和列Hire Date,下面哪些語句能完成該功能()

A.SELECT Name,Hire Date FROM tbl Employees
B.SELECT Name,Hire Date FROM tbl Employees WHERE Hire Date=’2009-01-01’OR‘2009-12-31’
C.SELECT Name,Hire Date FROM tbl Employees WHERE Hire Date BETWEEN’2008-12-31’AND‘2010-01-01’
D.SELECT Name,Hire Date FROM tbl Employees WHERE substring(Hire Date,1,4)=2009;