数据库基本操作

1、启动服务:net start MySQL

     停止服务:net stop MySQL

2、链接数据库:MySQL -r root -h localhost -p

3、数据库操作:

查询所有数据库:show databases

创建数据库:create database  <数据库名>

删除数据库:drop database  <数据库名>

进入数据库:use  <数据库名>

导入数据库:source 表路径;

查看编码类型:show variables like 'char%';

修改数据库编码格式:set name 'utf8';

4、数据表的操作:

1)查询数据库下表:show tables;

2)创建表:create table student(id int(4) primary key,name char(20));

注释: id为表的第一列;  int数字类型;  primary key主键的意思,列不能重复,Name为表的第二列名字,

char:类型;  

创建表:create table score(id int(4) not null,class int(2));

注释: not null字段不能为空。 

创建表:create table student1(id int(4) not null,name char(20));

Field (列名),Type(字段类型),null(是否为空),key(主键)

3)查看表结构:describe  student;    或      desc  student;

4)修改表名:alter table <表名> rename <表名>;

5)删除表:drop table <表名>;

6)修改表字段信息:alter table student change id id int(20);

7)增加表字段信息:alter table student1 add class int(4) not null after id;

8)删除一个表字段:alter table student1 drop number;

posted @ 2017-09-15 13:09  菜菜_包包  阅读(199)  评论(0编辑  收藏  举报