时间:2021-07-01 10:21:17 帮助过:3人阅读
#创建数据库
create database 数据库名 charset=utf8;
#删除数据库
drop database 数据库名;
#切换数据库/使用数据库
use 数据库名;
#查看当前选择的数据库
select database();
#查看所有数据库
show databases;
2、表操作
#查看当前数据库中所有表
show tables;
#创建表
auto_increment表示自动增长
create table 表名(列及类型);
如:
create table students(
id int auto_increment primary key,
name varchar(10) not null,
birthday datetime,
gender bit default 1,
isDelete bit default 0
);
#修改表
alter table 表名 add|change|drop 列名 类型;
如:
#增加列
alter table students add hometown varchar(20) not null;
#修改列名
alter table students change hometown tel int(11) not null;
#删除列
alter table students drop tel;
MySQL --1数据库及表操作
标签:arch 创建 使用 day hang end efault lte 数据库