显示当前数据库

mysql> select database();
+------------+
| database() |
+------------+
| test |
+------------+
row in set (0.00 sec)

显示数据库表

mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| t1 |
+----------------+
row in set (0.00 sec)

mysql表复制

//复制表结构
mysql> create table t2 like t1;
Query OK, rows affected (0.03 sec)
mysql> select * from t1;
+------+
| id |
+------+
| |
| |
| |
| |
| |
| |
+------+
rows in set (0.01 sec)
//复制表数据 mysql> insert into t2 select * from t1;
Query OK, rows affected (0.00 sec)
Records: Duplicates: Warnings: mysql> select * from t2;
+------+
| id |
+------+
| |
| |
| |
| |
| |
| |
+------+
rows in set (0.00 sec)

添加索引

//添加主键索引
mysql> alter table t1 add primary key(id);
Query OK, rows affected (0.01 sec)
Records: Duplicates: Warnings:
//添加唯一索引
mysql> alter table t1 add column name varchar() not null; //给t1表添加一个name列
Query OK, rows affected (0.00 sec)
Records: Duplicates: Warnings:
//查看表信息
mysql> desc t1;
+-------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id | int() | NO | PRI | | |
| name | varchar() | NO | | NULL | |
+-------+-------------+------+-----+---------+-------+
rows in set (0.00 sec)
//清空表数据
mysql> truncate t1;
Query OK, rows affected (0.00 sec) mysql> select * from t1;
Empty set (0.00 sec)
//添加唯一索引
mysql> alter table t1 add unique index t1_name_unique(name);
Query OK, rows affected (0.01 sec)
Records: Duplicates: Warnings:
//查看索引
mysql> show index from t1;
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| t1 | | PRIMARY | | id | A | | NULL | NULL | | BTREE | |
| t1 | | t1_name_unique | | name | A | | NULL | NULL | | BTREE | |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
rows in set (0.00 sec)
//添加普通索引
mysql> alter table t1 add column age int not null default ;
Query OK, rows affected (0.01 sec)
Records: Duplicates: Warnings: mysql> desc t1
-> ;
+-------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id | int() | NO | PRI | | |
| name | varchar() | NO | UNI | NULL | |
| age | int() | NO | | | |
+-------+-------------+------+-----+---------+-------+
rows in set (0.00 sec) mysql> alter table t1 add index t1_in_age(age);
Query OK, rows affected (0.02 sec)
Records: Duplicates: Warnings: mysql> show index from t1;
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| t1 | | PRIMARY | | id | A | | NULL | NULL | | BTREE | |
| t1 | | t1_name_unique | | name | A | | NULL | NULL | | BTREE | |
| t1 | | t1_in_age | | age | A | NULL | NULL | NULL | | BTREE | |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
rows in set (0.00 sec)

删除索引

mysql> alter table t1 drop primary key;

mysql> show index from t1;
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| t1 | | t1_name_unique | | name | A | | NULL | NULL | | BTREE | |
| t1 | | t1_in_age | | age | A | NULL | NULL | NULL | | BTREE | |
+-------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
mysql> alter table t1 drop index t1_in_age;
Query OK, rows affected (0.00 sec)
Records: Duplicates: Warnings: mysql> alter table t1 drop index t1_name_unique;
Query OK, rows affected (0.01 sec)
Records: Duplicates: Warnings: mysql> show index from t1;
Empty set (0.00 sec)

设置字段自增长auto_increment

mysql> alter table t1 modify id int not null primary key auto_increment;
Query OK, rows affected (0.02 sec)
Records: Duplicates: Warnings: mysql> desc t1;
+-------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+----------------+
| id | int() | NO | PRI | NULL | auto_increment |
| name | varchar() | NO | | NULL | |
| age | int() | NO | | | |
+-------+-------------+------+-----+---------+----------------+
rows in set (0.00 sec)

批量插入数据

mysql> insert into t1(name,age) values("aaa",),("bbb",),("cc",),("abc",);
Query OK, rows affected (0.00 sec)
Records: Duplicates: Warnings: mysql> select * from t1;
+----+------+-----+
| id | name | age |
+----+------+-----+
| | aaa | |
| | bbb | |
| | cc | |
| | abc | |
+----+------+-----+
rows in set (0.00 sec)

备份数据

mysql> select name,age from t1 into outfile "/tmp/t1.txt";
ERROR (HY000): File '/tmp/t1.txt' already exists
mysql> select name,age from t1 into outfile "/tmp/t1.txt";
Query OK, rows affected (0.00 sec)
[root@localhost tmp]# pwd
/tmp
[root@localhost tmp]# ls
ssh-TkEopz2496  ssh-zMKSLp2473  t1.txt  test.sql

清空表数据

mysql> delete from t1;
Query OK, rows affected (0.00 sec)
mysql> select * from t1;
Empty set (0.00 sec)
//导入数据
mysql> load data infile '/tmp/t1.txt' into table t1(name,age);
Query OK, rows affected, warnings (0.00 sec)
Records: Deleted: Skipped: Warnings:
//清空表
mysql> truncate t1;
Query OK, rows affected (0.00 sec)
//两种清空表的方式在原理上不一样,我们可以看出delete方式的影响行数为32,而truncate则是0,那么也就是说delete是一行一行的删除的,
所以truncate在清楚数据上面比delete方式更高效,并且truncate会是auto_increment的值重置为1

重置auto_increment

mysql> delete from t1 where id > ;
Query OK, rows affected (0.00 sec) mysql> alter table t1 auto_increment=;
Query OK, rows affected (0.01 sec)
Records: Duplicates: Warnings:

load data方式导入数据,这种方式只是导入表数据而不会导入表结构,所以在单纯的数据导入上面更高效,我们可以看看导出文件的内容:

[root@localhost tmp]# cat t1.txt
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
aaa
bbb
cc
abc
mysql> load data infile '/tmp/t1.txt' into table t1(name,age);
Query OK, 32 rows affected, 64 warnings (0.00 sec)
Records: 32 Deleted: 0 Skipped: 0 Warnings:

case when语句

mysql> select id,name,age,case when age >=  then 'a' when age <= then 'b' else 'c' end as ddd from t1;
+----+------+-----+-----+
| id | name | age | ddd |
+----+------+-----+-----+
| | aaa | | c |
| | bbb | | a |
| | cc | | b |
| | abc | | c |
| | aaa | | c |
| | bbb | | a |
| | cc | | b |
| | abc | | c |
| | aaa | | c |
| | bbb | | a |
| | cc | | b |
| | abc | | c |
| | aaa | | c |
| | bbb | | a |
| | cc | | b |
| | abc | | c |
| | aaa | | c |
| | bbb | | a |
| | cc | | b |
| | abc | | c |
+----+------+-----+-----+
rows in set (0.00 sec)

常用函数:字符串函数

//字符串组合函数
mysql> select concat("hello","mysql") as title;
+------------+
| title |
+------------+
| hellomysql |
+------------+
row in set (0.00 sec) mysql> select concat("hello","mysql") as title;
+------------+
| title |
+------------+
| hellomysql |
+------------+
row in set (0.00 sec) mysql> select concat("hello","mysql","aaaa") as title;
+----------------+
| title |
+----------------+
| hellomysqlaaaa |
+----------------+
row in set (0.00 sec)
//字符串大小写转换
mysql> select lcase('HELLO MYSQL') as title;
+-------------+
| title |
+-------------+
| hello mysql |
+-------------+
row in set (0.00 sec) mysql> select ucase('hello mysql') as title;
+-------------+
| title |
+-------------+
| HELLO MYSQL |
+-------------+
row in set (0.00 sec)
//返回字符的长度
mysql> select length("hello mysql") as length;
+--------+
| length |
+--------+
| |
+--------+
row in set (0.00 sec)
//将字符重复N次
mysql> select repeat('hello mysql,',);
+--------------------------------------+
| repeat('hello mysql,',) |
+--------------------------------------+
| hello mysql,hello mysql,hello mysql, |
+--------------------------------------+
row in set (0.00 sec)
//替换字符串
mysql> select replace("hello mysql","mysql","php") as rp;
+-----------+
| rp |
+-----------+
| hello php |
+-----------+
row in set (0.00 sec)
//截取字符串,注意索引是从1开始
mysql> select substring("hello mysql",,) as sub;
+-------+
| sub |
+-------+
| hello |
+-------+
row in set (0.00 sec)
//返回字符在列表中的位置
mysql> select find_in_set("a","a,b,c,d");
+----------------------------+
| find_in_set("a","a,b,c,d") |
+----------------------------+
| |
+----------------------------+
row in set (0.00 sec)

常用函数:数学函数

//10进制转2进制
mysql> select bin();
+--------+
| bin() |
+--------+
| |
+--------+
row in set (0.00 sec)
//向上取整
mysql> select ceiling(1.2);
+--------------+
| ceiling(1.2) |
+--------------+
| |
+--------------+
row in set (0.00 sec)
//向下取整
mysql> select floor(1.2);
+------------+
| floor(1.2) |
+------------+
| |
+------------+
row in set (0.00 sec)
//获取最大值
mysql> select *,max(age) from t1 ;
+----+------+-----+----------+
| id | name | age | max(age) |
+----+------+-----+----------+
| | aaa | | |
+----+------+-----+----------+
row in set (0.00 sec)
//获取最小值
mysql> select *,min(age) from t1;
+----+------+-----+----------+
| id | name | age | min(age) |
+----+------+-----+----------+
| | aaa | | |
+----+------+-----+----------+
row in set (0.00 sec)
//获取一个0到1之间的随机数
mysql> select rand();
+-------------------+
| rand() |
+-------------------+
| 0.635864053513728 |
+-------------------+
row in set (0.00 sec)

常用函数:日期函数

//获取当前时间的日期部分
mysql> select curdate();
+------------+
| curdate() |
+------------+
| -- |
+------------+
row in set (0.00 sec)
//获取当前时间的小时部分
mysql> select curtime();
+-----------+
| curtime() |
+-----------+
| :: |
+-----------+
row in set (0.00 sec)
//获取当前时间
mysql> select now();
+---------------------+
| now() |
+---------------------+
| -- :: |
+---------------------+
row in set (0.00 sec)
//mysql> select unix_timestamp();
+------------------+
| unix_timestamp() |
+------------------+
| |
+------------------+
row in set (0.00 sec)
//获取当前时间戳
mysql> select unix_timestamp();
+------------------+
| unix_timestamp() |
+------------------+
| |
+------------------+
row in set (0.00 sec)
//时间戳转化为日期
mysql> select from_unixtime(unix_timestamp());
+---------------------------------+
| from_unixtime(unix_timestamp()) |
+---------------------------------+
| -- :: |
+---------------------------------+
row in set (0.00 sec) //获取时间中的年月日
mysql> select year(now());
+-------------+
| year(now()) |
+-------------+
| |
+-------------+
row in set (0.00 sec)
mysql> select month(now());
+--------------+
| month(now()) |
+--------------+
| |
+--------------+
row in set (0.00 sec)
mysql> select day(now());
+------------+
| day(now()) |
+------------+
| |
+------------+
row in set (0.00 sec)

mysql基础操作整理(一)的更多相关文章

  1. MYSQL基础操作

    MYSQL基础操作 [TOC] 1.基本定义 1.1.关系型数据库系统 关系型数据库系统是建立在关系模型上的数据库系统 什么是关系模型呢? 1.数据结构可以规定,同类数据结构一致,就是一个二维的表格 ...

  2. MYSQL 基础操作

    1.MySQL基础操作 一:MySQL基础操作 1:MySQL表复制 复制表结构 + 复制表数据 create table t3 like t1; --创建一个和t1一样的表,用like(表结构也一样 ...

  3. 【MySQL】MySQL基础操作语句

    mysql基础操作语句,包括数据库的增.删.切换,以及表的增.删.改.查.复制. 创建数据库 mysql> create database tem; 使用数据库 mysql> use te ...

  4. MySQL基础操作&&常用的SQL技巧&&SQL语句优化

    基础操作     一:MySQL基础操作         1:MySQL表复制             复制表结构 + 复制表数据             create table t3 like t ...

  5. mysql数据库优化课程---13、mysql基础操作

    mysql数据库优化课程---13.mysql基础操作 一.总结 一句话总结:mysql复制表,索引,视图 1.mysql如何复制表? like select * 1.复制表结构 create tab ...

  6. MySQL基础操作(二)

    MySQL基础操作 一.视图 视图是一个虚拟表(非真实存在),其本质是[根据SQL语句获取动态的数据集,并为其命名],用户使用时只需使用[名称]即可获取结果集,并可以将其当作表来使用.注意:使用视图时 ...

  7. 前端笔记之服务器&Ajax(中)MySQL基础操作&PHP操作数据库&Ajax

    一.数据库基础 1.1什么是数据库? 什么是数据库? 答:就是一个很大的一个文件,只不过这个文件可以通过一些‘命令’操作数据: 增.删.改.查数据: 数据库等于持久数据和数据操作的一个统称. 数据库是 ...

  8. PHP mysql基础操作

    mysql连接操作 //建立连接$con = mysql_connect('localhost', 'root', '123456');//判断是否连接成功if($con){ die('连接失败!'. ...

  9. 02 . Mysql基础操作及增删改查

    SQL简介 SQL(Structured Query Language 即结构化查询语言) SQL语言主要用于存取数据.查询数据.更新数据和管理关系数据库系统,SQL语言由IBM开发. SQL语句四大 ...

随机推荐

  1. Delphi 6 Web Services初步评估

    Delphi 6 Web Services初步评估这是我刚到现在公司的时候(2001年8月份)所作的一份测试报告,现公布出来,希望能对大家有所帮助.因为当时d6刚刚发行,Web Service方面还存 ...

  2. poj 3575 Crosses and Crosses(SG函数)

    Crosses and Crosses Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 3063   Accepted: 11 ...

  3. MIPI D-PHY 简写收集

    Acronyms APPI         Abstracted PHY-Protocol InterfaceBER            Bit Error Rate 417 CILControl ...

  4. CentOS让root用户可以SSH登录

    一.说明     Solaris 10 出于安全原因,默认参数很严格,禁止root用户直接使用ssh登陆 二.处理     1.可以先用非root的帐户,登陆到ssh后,su成root     2.如 ...

  5. BZOJ1176: [Balkan2007]Mokia CDQ分治

    最近很不对啊=w= 写程序全是bug啊 ans数组开小了竟然一直不知道,小数据没问题大数据拍不过,交上去RE 蛋疼半天 这个主要把每次询问拆成3个询问. #include<cstdio> ...

  6. LINQ多条件OR模糊查询

    本文章转载:http://www.cnblogs.com/guyun/archive/2012/10/18/2729888.html 需求是这样的,有一张表tbl(Key[int],Value[str ...

  7. LINQ 从 CSV 文件生成 XML

    本文参考:http://msdn.microsoft.com/zh-cn/library/bb387090.aspx 下面的代码对字符串数组执行 LINQ 查询. 在 C# 版本中,该查询使用 let ...

  8. BloomFilter--大规模数据处理利器

    Bloom Filter是由Bloom在1970年提出的一种多哈希函数映射的快速查找算法.通常应用在一些需要快速判断某个元素是否属于集合,但是并不严格要求100%正确的场合. 一. 实例 为了说明Bl ...

  9. Struts2 result type

    Struts2支持的不同类型的返回结果为: type name 说明 dispatcher 缺省类型,用来转向页面,通常处理JSP chain 转向另一个action,用来处理Action链 redi ...

  10. Android之如何混淆代码和相关配置

    昨天,客户想看一下目前项目开发到什么程度了,于是需要将项目签名打包成apk,结果打包的时候出错了,吃惊,什么情况.等成功打包以后,安装起来发现部分功能又报错了,囧,所幸最后还是解决了.在这里记录一下遇 ...