A.insert into表名values(字段名1對應(yīng)的值);
B.insert into表名values(字段名1對應(yīng)的值,字段名2對應(yīng)值);
C.insert into表名(字段名1)value(字段名1對應(yīng)的值);
D.insert into表名(字段名1,字段名2)values(字段名1對應(yīng)的值,字段名2對應(yīng)值);
您可能感興趣的試卷
你可能感興趣的試題
A.“\G”
B.“。”
C.“\g”
D.“;”
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ù)
A.show database;顯示所有數(shù)據(jù)庫
B.show table;顯示所有表
C.show tables;顯示所有表
D.show databases;顯示所有數(shù)據(jù)庫
A.獨(dú)立性
B.持久性
C.原子性
D.一致性
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;
最新試題
概念模型獨(dú)立于任何一種數(shù)據(jù)模型,并且與具體的DBMS有關(guān)。
為了保護(hù)數(shù)據(jù)庫,要盡可能多的使用root賬號來登錄,以此來確保數(shù)據(jù)的安全訪問。
Select查詢語句中into outfile子句的功能是將查詢結(jié)果輸出到指定文件中。
關(guān)系是若干表的集合。
子查詢,顧名思義就是只能嵌套在查詢語句中。
索引一定比表中的數(shù)據(jù)占用的存儲空間小。
啟用日志不會降低MySQL數(shù)據(jù)庫的性能。
MySQL配置文件修改后,保存即刻生效。
事務(wù)COMMIT 之后,還可以撤銷。
在查詢語句中,一個表可以與它自己進(jìn)行連接。