创建一张student表,以下SQL代码正确吗? create table student
举一反三
- 创建数据表student的SQL语句为() A: CREATE DATABASE student B: CREATE VIEW student C: CREATE PROCEDURE student D: CREATE TABLE student
- 下列语句中正确创建数据库“student”的是() A: create table student B: create database student C: alter database student D: create view student
- 删除当前数据库中名为Student的表,以下SQL语句正确的是______。 A: DROP TABLE Student B: DELETE TABLE Student C: REMOVE TABLE Student D: CLEAR TABLE Student
- 下面选项中,哪个可以正确创建一个名称为student的数据库? A: Alter DATABASE student; B: CREATE BASE student; C: CREATE DATABASE student; D: CREATE TABLE student;
- 若用如下的SQL语句创建一个STUDENT表: CREATE TABLE STUDENT(NO char(4) NOT NULL,NAME char(8) NOT NULL,SEX char(2),AGE int() )可以插入到STUDENT表中的是()