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

mysql基本语句

时间:2016-04-30 14:08:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

mysql -u root -p;  

登录数据库

 

show databases;  

展示数据库

 

show tables;

展示表

 

desc messages;  

查看messages表的结构

 

drop database lovestory;  

删除lovestory数据库

 

create table messages (

  id int primary key auto_increment,

  name varchar(50),

  article text,

  created_at timestamp

)engine=InnoDB;  

建立messages表

(InnoDB类型支持事务。mysql默认采用MyISAM引擎,该类型表不支持事务,仅存储数据,优点在于读写很快。)

 

alter table photo rename photos;

修改表名

 

alter table messages modify article text;

修改字段数据类型

(article:字段名,text:要修改成的类型)

 

alter table messages change article myarticle;

修改字段名

 

alter table messages add update_at timestamp;

增加字段

 

alter table messages drop update_at;

删除字段

 

drop table messages;

删除表

 

select * from messages;

查询表中的所有数据

 

select name from messages where id=1;

查询表中id为1的数据的名字

 

select count(*) from messages where name=‘zhangsan‘;

查询表中name为zhangsan的数据条数

 

insert into messages values(1 , ‘joyce‘, ‘hehe‘, ‘2014-12-13 21:56:03‘);

insert into messages(name,text) values(‘joyce‘, ‘heheda‘);

插入数据

 

update messages set name=‘qsq‘,article=‘hehe‘ where id=1;

更新数据

 

delete from messages where id=1;

删除数据

mysql基本语句

标签:

原文地址:http://www.cnblogs.com/glimpse/p/5448638.html

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