在create table 语句中,用【】 创建普通索引。
A: default
B: unique
C: primary key
D: index
A: default
B: unique
C: primary key
D: index
举一反三
- 在create table 语句中,用【】 创建唯一索引。 A: primary key B: unique C: index D: enum
- 在Create Table语句中,【 】短语能创建索引。 A: Primary Key B: Foreign Key C: References D: Unique E: Index
- 在Create Table语句中,()短语能定义表的关键字。 A: Constraint B: Foreign Key C: Primary Key D: Index E: Unique
- 在create table 语句中,用【 】定义主键。 A: primary key B: unsigned C: D: default
- 哪条语句将导致创建索引? A: CREATE TABLE Employee (EmployeeID INTEGER PRIMARY KEY) B: CREATE TABLE Employee (EmployeeID INTEGER INDEX) C: CREATE TABLE Employee (EmployeeID INTEGER NULL) D: CREATE TABLE Employee(EmployeeID INREGER DISTINCT)