中国大学MOOC: CREATE TABLE语句执行后,executeUpdate的返回值为1。
举一反三
- CREATE TABLE语句执行后,executeUpdate的返回值为1。 A: 正确 B: 错误
- 中国大学MOOC: 是执行某些DDL语句的权限,如Create Table的权限。
- 中国大学MOOC: 创建表用create table语句
- 中国大学MOOC: 在执行CREATE TABLE语句时可以创建索引,也可以单独用________________语句创建索引。
- 中国大学MOOC: 关于下面代码段的说法错误的是( )。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!);