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

MySQL --1数据库及表操作

时间:2018-01-19 14:11:00      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:arch   创建   使用   day   hang   end   efault   lte   数据库   

1、数据库操作

#创建数据库
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   数据库   

原文地址:http://blog.51cto.com/1126228/2062809

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