码迷,mamicode.com
首页 > 数据库 > 详细

数据库基本操作

时间:2017-12-11 15:04:39      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:mysql   安装   使用   

查看所有数据库

show databases;

使用数据库

use 数据库名;

查看当前使用的数据库

select database();

创建数据库

create database 数据库名 charset=utf8;
例:
create database python charset=utf8;

删除数据库

drop database 数据库名;
#######

查看当前数据库中所有表

show tables;

查看表结构

desc 表名;

创建表

auto_increment表示自动增长

create table 表名(列 类型 约束,...);
例:创建班级表
create table classes(
id int unsigned auto_increment primary key not null,
name varchar(10),
isdelete bit default 0
);
例:创建学生表
create table students(
id int unsigned auto_increment primary key not null,
name varchar(10) not null,
gender bit default 1,
hometown varchar(20),
clsid int unsigned,
isdelete bit default 0,
foreign key(clsid) references classes(id)
);

修改表-添加字段

alter table 表名 add 列名 类型;
例:
alter table students add birthday datetime;

修改表-修改字段:重命名版

alter table 表名 change 原名 新名 类型及约束;
例:
alter table students change name name1 varchar(20) not null;

修改表-修改字段:不重命名版

alter table 表名 modify 列名 类型及约束;
例:
alter table students modify name1 varchar(10) not null;

修改表-删除字段

alter table 表名 drop 列名;
例:
alter table students drop birthday;

删除表

drop table 表名;
例:
drop table students;

查看表的创建语句

show create table 表名;
例:
show create table classes;


数据库基本操作

标签:mysql   安装   使用   

原文地址:http://blog.51cto.com/11732546/2049351

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!