mysql 数据库定义常用操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 数据库定义常用操作相关的知识,希望对你有一定的参考价值。
//数据库名暂定为:db
1.创建数据库
create database db default character set utf8;
2.使用数据库
use db;
3.删除数据库
drop database db;
4.修改数据库的字符集
alter database db default charset utf8;
5.查看建立数据库的语句
show create database db;
6.建立一个表,查看其默认值
create table t(t int);
7.建立表
create table t1(
tid int unsigned not null auto_increment,
tname varchar(30) not null,
primary key(tid)
)auto_increment=201401;
8.删除表
drop table t1;
9.批量删除多个表
drop table t1,t2,t3;
10.修改表名
rename table t1 to student;
11.修改表中字段的类型及字段名
alter table student change tname sname varchar(30) not null;
12.增加一列
alter table student add saddress varchar(50) after sname;
13.删除列
alter table student drop column saddress;
以上是关于mysql 数据库定义常用操作的主要内容,如果未能解决你的问题,请参考以下文章