-
DDL:数据定义语言
-
数据库
-
create database if not exists bigdata_61; 创建数据库
-
show databases; 查看有哪些数据库
-
use bigdata_61;使用数据库
-
select database(); 查看正在使用的数据库
-
drop database bigdata_61;删除数据库
-
-
表
-
create table student(id int,name varchar(20)); 创建表
-
show tables; 查看有哪些表
-
desc student;查看表结构
-
drop table student;删除表
-
-
表结构
-
alter table student add age int;
-
alter table student change name address_name varchar(200);
-
alter table student drop address_name;
-
rename table student to stu;
-
-