显示当前数据库

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. HDU 5929 Basic Data Structure 【模拟】 (2016CCPC东北地区大学生程序设计竞赛)

    Basic Data Structure Time Limit: 7000/3500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Oth ...

  2. Linux学习笔记23——取消线程

    一 相关函数 1 发送终止信号 #include <pthread.h> int pthread_cancel(pthread_t thread); 2 设置取消状态 #include & ...

  3. HDOJ 2018 母牛的故事

    Problem Description 有一头母牛,它每年年初生一头小母牛.每头小母牛从第四个年头开始,每年年初也生一头小母牛.请编程实现在第n年的时候,共有多少头母牛? Input 输入数据由多个测 ...

  4. Service的两种启动方法

    刚才看到一个ppt,介绍service的两种启动方法以及两者之间的区别. startService 和 bindService startService被形容为我行我素,而bindService被形容 ...

  5. spring maven pom

    https://spring.io/blog/2009/12/02/obtaining-spring-3-artifacts-with-maven/

  6. 常见的HTTP状态码深入理解

    状态码的职责是当客户端向服务器端发送请求时,描述返回请求结果.借助状态码,用户可以知道服务器端是正常处理了请求,还是出现了什么错误. RFC2616定义的状态码,由3位数字和原因短信组成. 数字中的第 ...

  7. Spring注入-Map

    在spring框架中为Map注入属性 1map映射的对象创建 package com; /** * Map集合在spring中的使用测试 */ public class User { private ...

  8. servlet清晰理解

    servlet介绍 Servlet看起来像是通常的Java程序.它是JSP的前身,在MVC架构中担任Controller的角色,即控制层.主要进行数据的处理操作和流程的控制,并将有关结果存储到Java ...

  9. Unity NGUI UILabel文字变色 及相关问题

    在同一个UILabel中可以有不同颜色的文字只需要添加BBCode标记[ff0000]Red Label[-],那么在这个标记之间的RedLabel 就会变成红色 注意: 1.文本最终显示的颜色=Co ...

  10. CSS3动画变形Animations

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...