在MySQL中要创建test数据库,应该使用命令“create table test;”
错
举一反三
- 创建数据库test的命令是 A: create database test B: create table test C: create index test
- 创建数据库test的命令是 A: create database test; B: create table test ; C: create index test; D: Create trigger test;
- 创建名为test数据库的MYSQL命令是( ) A: drop database test B: create database test C: create test D: show test
- 下列创建名为'test'的数据库的语句正确的是? A: create database 'test' B: CREATE DATABASE test C: create database test; D: create database 'test';
- 在MySQL中要创建choose数据库,应该使用命令
内容
- 0
MySQL中,创建数据库test正确的SQL语句是() A: CREATEDATABASEIFEXISTS`test` B: CREATEIFNOTEXISTS`test` C: CREATEDATABASEIFNOTEXISTS`test` D: CREATEIFNOTEXISTS`test`DATABASE
- 1
下面选项中,哪个MySql命令可以实现切换到test数据库? A: \s test B: \h test C: \? Test D: \u test
- 2
在MySql命令中用于切换到test数据库的命令是_______
- 3
hive里创建表test,表里添加两个字段id和name,以下哪个HQL是正确的( ) A: create test(id int, name string); B: create test(int id, string name); C: create table test(int id, string name); D: create table test(id int, name string)
- 4
MySQL中,创建数据库test正确的SQL语句是()