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

mysql笔记之最基本

时间:2016-06-21 21:01:22      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:数据库

增:

create database database_name;

create table table_name(

id int not null AuTo_increment

zd1 char(5) not null

zd2 char(8) not null

primary key id

);

alter table table_name add 字段;

insert into table_name(字段1,字段2.。。。)values(‘xxx‘,‘xxx‘...);

删:

delete from table_name where between n1 and n2;

drop table table_name;

alter table table_name drop 字段;

查:

show databases;

show tables;

show create table_name;

desc table_name;

select 字段 from table_name where 条件;

select 字段,字段 from table_name order by id desc limit n;

改:

alter table old_table_name rename table_name;

updata table_name set 字段="xxx" where 条件;

alter table table_name rename 旧字段 新字段;

alter table table_name change 旧字段 新字段 字符类型;


授权:

grant select,insert,update,delete(or all privileges) on 数据库.数据表 to 用户名@"IP" identified by "密码" (with grant option ----可以给其他用户授权);

FLUSH PRIVILEGES;----保存更改并立即生效

mysql笔记之最基本

标签:数据库

原文地址:http://10979518.blog.51cto.com/10969518/1791422

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