mysql基础操作整理(一)
显示当前数据库
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基础操作整理(一)的更多相关文章
- MYSQL基础操作
MYSQL基础操作 [TOC] 1.基本定义 1.1.关系型数据库系统 关系型数据库系统是建立在关系模型上的数据库系统 什么是关系模型呢? 1.数据结构可以规定,同类数据结构一致,就是一个二维的表格 ...
- MYSQL 基础操作
1.MySQL基础操作 一:MySQL基础操作 1:MySQL表复制 复制表结构 + 复制表数据 create table t3 like t1; --创建一个和t1一样的表,用like(表结构也一样 ...
- 【MySQL】MySQL基础操作语句
mysql基础操作语句,包括数据库的增.删.切换,以及表的增.删.改.查.复制. 创建数据库 mysql> create database tem; 使用数据库 mysql> use te ...
- MySQL基础操作&&常用的SQL技巧&&SQL语句优化
基础操作 一:MySQL基础操作 1:MySQL表复制 复制表结构 + 复制表数据 create table t3 like t ...
- mysql数据库优化课程---13、mysql基础操作
mysql数据库优化课程---13.mysql基础操作 一.总结 一句话总结:mysql复制表,索引,视图 1.mysql如何复制表? like select * 1.复制表结构 create tab ...
- MySQL基础操作(二)
MySQL基础操作 一.视图 视图是一个虚拟表(非真实存在),其本质是[根据SQL语句获取动态的数据集,并为其命名],用户使用时只需使用[名称]即可获取结果集,并可以将其当作表来使用.注意:使用视图时 ...
- 前端笔记之服务器&Ajax(中)MySQL基础操作&PHP操作数据库&Ajax
一.数据库基础 1.1什么是数据库? 什么是数据库? 答:就是一个很大的一个文件,只不过这个文件可以通过一些‘命令’操作数据: 增.删.改.查数据: 数据库等于持久数据和数据操作的一个统称. 数据库是 ...
- PHP mysql基础操作
mysql连接操作 //建立连接$con = mysql_connect('localhost', 'root', '123456');//判断是否连接成功if($con){ die('连接失败!'. ...
- 02 . Mysql基础操作及增删改查
SQL简介 SQL(Structured Query Language 即结构化查询语言) SQL语言主要用于存取数据.查询数据.更新数据和管理关系数据库系统,SQL语言由IBM开发. SQL语句四大 ...
随机推荐
- 如何优雅的输出PHP调试信息
经常因为出现紧急bug而被老板骂的同事,为了更快的修复而直接利用线上的错误环境现场debug,并直接在页面上echo和dump.结果被老板发现了,又是一通臭骂.那么有没有什么办法更优雅的输出PHP调试 ...
- there be 句型
there be 意思:表示存在或者发生. 英文释义:used to show that sth exists or happens 如果现在进行时,单数时用is,复数时用are. 现在我问你一个问题 ...
- Cookie 和Session
会话: 简单理解: 用户开一个浏览器,点击多个超链接,访问服务器多个web资源,然后关闭浏览器,整个过程称之为一个会话. 会话要解决的问题: 每个用户与服务器进行交互的过程中,各自会有一些数据,程序 ...
- .\Obj\uCOSDemo.axf: Error: L6218E: Undefined symbol LCD_Fast_DrawPoint (refe
这个问题是 没有定义此函数 解决方法是 定义并声明一下 这个函数!!!
- Hash表——The Hash table
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "list.h&q ...
- const char*, char const* and char *const 分类: C/C++ OpenCV 2014-11-08 18:10 114人阅读 评论(0) 收藏
const char*, char const*, char*const的区别问题几乎是C++面试中每次都会有的题目. 事实上这个概念谁都有只是三种声明方式非常相似很容易记混. Bjarne在他的 ...
- TOJ3660家庭关系(并查集+hash+图的连通性)
家庭关系 时间限制(普通/Java):1000MS/3000MS 运行内存限制:65536KByte 总提交: 38 测试通过: 9 描述 给定若干家庭成员之间的关系 ...
- android中listview的一些样式设置
在Android中,ListView是最常用的一个控件,在做UI设计的时候,很多人希望能够改变一下它的背景,使他能够符合整体的UI设计,改变背景背很简单只需要准备一张图片然后指定属性 android: ...
- 廖雪锋笔记2:list,tuble
list:元素值不固定,元素类型不固定 apend(xx) insert(INDEX,xx) pop(index) 索引元素: [0] [1] [2] [-1] [-2] LIST,TUBLE变量值是 ...
- hadoop资料汇总(网上)
http://blog.csdn.net/fansy1990/article/list/3 全部是hadoop的,挺好. http://stackoverflow.com/ ...