下列不属于SQL保留字的是( )。
A: protected
B: where
C: exists
D: table
A: protected
B: where
C: exists
D: table
举一反三
- 使用SQL语句删除表mytest,下列SQL语句正确的是( )。 A: DROP TABLE mytest IF EXISTS B: DROP TABLE IF EXISTS mytest C: ALTER TABLE IF EXISTS mytest ALTER TABLE mytest IF EXISTS
- 下列属于数据定义功能的SQL语句是( )。 A: CREATE TABLE B: DROP TABLE C: UPDATE D: ALTER TABLE
- 不属于DDL的SQL命令是( )。 A: create table B: alter table C: drop table D: select
- 下列语句没有语法错误的是()。 A: SELECT * FROM my table WHERE order=10 B: SELECT * FROM [my table] WHERE order=10 C: SELECT * FROM my table WHERE [order]=10 D: SELECT * FROM [my table] WHERE [order]=10
- 关于下面代码段的说法错误的是()。sql=@"create table if not exists student(sID text,sName text,sAge integer)"; if (![db executeUpdate:sql]) { NSLog(@"create table failed!"); return; } NSLog(@"create table successed!"); A: SQL语句以字符串方式嵌入在OC代码中 B: if not exists用于判断数据库是否存在该同名表 C: executeUpdate用于执行任何SQL语句 D: SQL语句有语法错误时将在控制台中给出提示并返回