MySQL基本操作,新手入门宝典

数据库 MySQL
此文章主要向大家描述的是MySQL基本操作的具体内容,如果你对MySQL基本操作有一定的兴趣的话,以下的文章你一定不要错过。

以下的文章主要向大家描述的是MySQL基本操作,MySQL在实际操作中是经常被用到的,所以对MySQL的基本内容的了解也是一件很重要的事项,以下的文章就是对MySQL基本操作的详细描述。

登陆数据库

 

D:\phpStudy\MySQL\bin>MySQL -uroot -proot

 

查看数据库

MySQL> show databases;

 

选择数据库

MySQL> use bugfree;

 

设置字符集

MySQL> set names 'gbk';

 

查询数据库中的表

MySQL> show tables;

 

MySQL基本操作创建表

MySQL> create table test(

 

-> tid int(10) not null,

 

-> tname varchar(100) not null,

 

-> tdate datetime not null default '0000-00-00',

 

-> primary key (tid));

 

查看表结构

MySQL> desc test;

 

添加列

MySQL> alter table test add(tage int(3));

 

修改原表结构

MySQL> alter table test modify tage int(5) not null;

 

修改列的默认值

MySQL> alter table test alter tage set default '0';

 

去掉列的默认值

MySQL> alter table test alter tage drop default;

 

删除列

MySQL> alter table test drop column tage;

 

插入数据

MySQL> insert into test(tid,tname,tdate) value(1,'yangjuqi','2008-03-21');

 

查询数据

MySQL> select * from test;

 

模糊查询

MySQL> select * from test where tname like '%杨%';

 

修改数据

MySQL> update test set tname='张三' where tid='2';

 

MySQL基本操作删除数据

MySQL> delete from test where tid='2';

 

删除表

MySQL> drop table test;

 

重命名表

MySQL> alter table test rename testbak;

 

分页查询(limit 起始行,取多少行)

MySQL> select * from testbak limit 2,1;

 

刷新数据库

MySQL> flush privileges;

 

显示数据库版本

MySQL> select version();

 

显示当前时间

MySQL> select current_date;

 

修改用户密码

D:\phpStudy\MySQL\bin>MySQLadmin -uroot -proot password yangjuqi

 

将查询出的数据写入文件

MySQL> select * from testbak into outfile "d:/test.txt" fields terminated by ",";

 

查看数据库状态

MySQL> status;

 

MySQL基本操作查看所有编码

MySQL> show variables like 'character_set_%';

 

导入sql文件命令

MySQL>source d:/MySQL.sql;

 

 【编辑推荐】

  1. MySQL数据库备份的命令实际应用
  2. MySQL 5.5.3 发布情况介绍
  3. MySQL使用备忘的实际操作步骤概述
  4. MySQL数据库服务启动不了的解决方案
  5. MySQL数据库的基本操作演示
责任编辑:佚名 来源: 博客园
相关推荐

2013-12-24 10:04:01

PostgreSQL

2011-02-21 17:51:39

Zimbra入门新手

2011-01-10 14:36:00

新手linux基础

2011-05-31 16:47:47

SEO

2010-06-10 10:31:36

MySQL出错代码列表

2010-05-14 18:31:17

MySQL 定时数据备

2009-01-22 10:31:28

2011-05-18 09:52:28

2010-06-08 16:22:20

2013-09-02 10:23:14

2010-09-09 13:40:19

XML DOM

2010-06-23 15:00:50

Fix协议

2011-03-22 11:06:52

Nagios安装

2018-04-17 11:00:13

数据库MySQL命令大全

2009-06-16 11:11:00

基本规则Java程序

2010-05-17 09:52:55

虚拟化VMware Play

2009-07-16 09:07:46

Linux使用技巧Linux入门Linux开发

2010-06-19 13:47:39

AMF协议

2011-06-30 17:41:46

SEO

2010-06-21 15:27:38

Linux apt-g
点赞
收藏

51CTO技术栈公众号