摘要:
题目: 针对actor表创建视图actor_name_view,只包含first_name以及last_name两列,并对这两列重新命名,first_name为first_name_v,last_name修改为last_name_v: CREATE TABLE IF NOT EXISTS actor 阅读全文
摘要:
题目: 针对如下表actor结构创建索引: (注:在 SQLite 中,除了重命名表和在已有的表中添加列,ALTER TABLE 命令不支持其他操作) CREATE TABLE IF NOT EXISTS actor ( actor_id smallint(5) NOT NULL PRIMARY K 阅读全文
摘要:
题目: 对于表actor批量插入如下数据,如果数据已经存在,请忽略(不支持使用replace操作) CREATE TABLE IF NOT EXISTS actor ( actor_id smallint(5) NOT NULL PRIMARY KEY, first_name varchar(45) 阅读全文
摘要:
题目: 对于表actor批量插入如下数据(不能有2条insert语句哦!) CREATE TABLE IF NOT EXISTS actor ( actor_id smallint(5) NOT NULL PRIMARY KEY, first_name varchar(45) NOT NULL, l 阅读全文
摘要:
题目: 创建一个actor表,包含如下列信息(注:sqlite获取系统默认时间是datetime('now','localtime')) 程序: CREATE TABLE IF NOT EXISTS actor ( actor_id smallint(5) NOT NULL, first_name 阅读全文
摘要:
题目: 你能使用子查询的方式找出属于Action分类的所有电影对应的title,description吗 输入如: INSERT INTO film VALUES(1,'ACADEMY DINOSAUR','A Epic Drama of a Feminist And a Mad Scientist 阅读全文