【简答题】创建数据库 market ,在 market 中创建数据表 customers , customers 表结构如下,按要求进行操作。 字段名 数据类型 主键 非空 唯一 自增 字段注释 c_num int(11) 是 是 是 是 会员 id c_name varchar(50) 否 否 否 否 会员姓名 c_contract varchar(50) 否 否 否 否 联系方式 c_city varc...
【简答题】阅读下面对话,从方框内7个选项中选择5个恰当的句子完成此对话。 A. When did you buy it? B. It’s much better than before. C.When does it start? D. Good idea. E. I won’t miss it! F. It will last two days G. How much are the tickets? A...
【单选题】course 表设计如下,通过 SQL 语句的 update 语句来修改记录 , 将课程名称为‘数据结构’课程的学分改为 5 。 正确的 SQL 语句是() 列名 中文解释 数据类型 长度 约束 cno 课程编号 Char 3 非空 , 主键 cname 课程名称 Varchar 50 唯一 grade 学分 int 0~100 property 属性(考试或考查) Char 4 考试或考查
A.
update course set grade=5 where cname=’ 数据结构 ’
B.
update course set grade=’5’ where sname=’ 数据结构 ’
C.
update course set grade=’5’
D.
update course set grade=’5’ where cname=’ 数据结构 ’
【单选题】能够构成紧键联接的两种键是______。
【简答题】创建新的数据库,库名为 my_exercise_db ,然后在该数据库中新建数据表 my_ exercise _table ,表结构如表 12-11 所示。 表 12-11 my_ exercise _table 数据表结构 字段名 数据类型 长度 约束 cid integer 默认 主键、非空、唯一、自增 customer_name character varying 2 无 customer_...