- 浏览: 201474 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
qiankai86:
s
多个文件上传的功能 -
zhjxzhj:
经测试不能用
PDF破解软件 -
meadlai:
很不错...哈哈...
PDF破解软件 -
talin2010:
刚学了,复习一下。。
Mysql+tomcat连接池自己的例子 -
yshuaiwen:
上面的方法都不怎么好,太麻烦,而且都需要改tomcat的xml ...
Mysql+tomcat连接池的配置实例
MYSQL完全手册学习笔记
SQL基础
User 库名——使用某个库
Show 表名——显示表的各个字段
Select count (*) from callslog ——显示一共有多少条记录
mysql> create database toys;——建立个数据库
Query OK, 1 row affected (0.02 sec)
mysql> use toys;
Database changed
mysql> show tables;
Empty set (0.01 sec)
mysql> create table user(id int(11) not null auto_increment,primary key(id));
建立个表
mysql> create table status(id int(11) not null,video_id tinyint(11) not null);
Query OK, 0 rows affected (0.08 sec)
mysql> alter table status add (hyht varchar(255));
Query OK, 0 rows affected (0.28 sec)
Records: 0 Duplicates: 0 Warnings: 0
增加字段
mysql> alter table status rename haha;
Query OK, 0 rows affected (0.03 sec)
Alter的用法
mysql> CREATE TABLE t1 (a INTEGER,b CHAR(10));
重命名表,从t1到t2:
mysql> ALTER TABLE t1 RENAME t2;
为了改变列a,从INTEGER改为TINYINT NOT NULL(名字一样),并且改变列b,从CHAR(10)改为CHAR(20),同时重命名它,从b改为c:
mysql> ALTER TABLE t2 MODIFY a TINYINT NOT NULL, CHANGE b c CHAR(20);
增加一个新TIMESTAMP列,名为d:
mysql> ALTER TABLE t2 ADD d TIMESTAMP;
在列d上增加一个索引,并且使列a为主键:
mysql> ALTER TABLE t2 ADD INDEX (d), ADD PRIMARY KEY (a);
删除列c:
mysql> ALTER TABLE t2 DROP COLUMN c;
增加一个新的AUTO_INCREMENT整数列,命名为c:
mysql> ALTER TABLE t2 ADD c INT UNSIGNED NOT NULL AUTO_INCREMENT,
ADD INDEX (c);
注意,我们索引了c,因为AUTO_INCREMENT柱必须被索引,并且另外我们声明c为NOT NULL,因为索引了的列不能是NULL。 当你增加一个AUTO_INCREMENT列时,自动地用顺序数字填入列值。
mysql> insert into t2 (a,c)values(1,'hghg');
Query OK, 1 row affected (0.03 sec)
添加记录
mysql> alter table t2 drop column c;
Query OK, 0 rows affected (0.25 sec)
Records: 0 Duplicates: 0 Warnings: 0
删除列
mysql> alter table t2 add (c varchar(255));
Query OK, 0 rows affected (0.25 sec)
Records: 0 Duplicates: 0 Warnings: 0
增加列
注意:一个表中必须有主键才能在mysql插件中直接编辑,否则edit那项为灰色
mysql> delete from haha where video_id=2;
Query OK, 1 row affected (0.03 sec)
有条件的删除数据
mysql> update haha set hyht='tt'where hyht='1';
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2 Changed: 2 Warnings: 0
更新数据
mysql> select * from haha;
+----+----------+------+
| id | video_id | hyht |
+----+----------+------+
| 1 | 3 | tt |
| 2 | 3 | erer |
| 3 | 3 | tt |
| 4 | 1 | tt |
| 5 | 2 | tt |
+----+----------+------+
5 rows in set (0.01 sec)
mysql> select hyht from haha
+------+
| hyht |
+------+
| tt |
| erer |
| tt |
| tt |
| tt |
+------+
5 rows in set (0.00 sec)
mysql> select distinct hyht
+------+
| hyht |
+------+
| tt |
| erer |
+------+
2 rows in set (0.01 sec)
三个select 查询语句
mysql> select * from haha where video_id>2;
+----+----------+------+
| id | video_id | hyht |
+----+----------+------+
| 1 | 3 | tt |
| 2 | 3 | erer |
| 3 | 3 | tt |
+----+----------+------+
3 rows in set (0.00 sec)
mysql> select * from chengji;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 1 | john | 60 | 37 | 45 |
| 2 | jim | 96 | 89 | 92 |
| 3 | bill | 65 | 12 | 57 |
| 4 | harry | 69 | 85 | 12 |
+----+-------+------+---------+------------+
4 rows in set (0.00 sec)
查询chengji表
mysql> select * from chengji where math>90;
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 2 | jim | 96 | 89 | 92 |
+----+------+------+---------+------------+
1 row in set (0.00 sec)
查询math〉90 分的人
mysql> select name from chengji where math>85 and physics>85 and literature >85;
+------+
| name |
+------+
| jim |
+------+
1 row in set (0.00 sec)
查询出来的优秀学生
mysql> select * from chengji where math<25 or physics <25 or literature <25;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 3 | bill | 65 | 12 | 57 |
| 4 | harry | 69 | 85 | 12 |
+----+-------+------+---------+------------+
2 rows in set (0.00 sec)
其中有一门没有过25分的学生
mysql> select name,math+physics+literature from chengji;
+-------+-------------------------+
| name | math+physics+literature |
+-------+-------------------------+
| john | 142 |
| jim | 277 |
| bill | 134 |
| harry | 166 |
+-------+-------------------------+
得出三门成绩的总分数
mysql> select name,math+physics+literature as zf from chengji order by zf;
+-------+-----+
| name | zf |
+-------+-----+
| bill | 134 |
| john | 142 |
| harry | 166 |
| jim | 277 |
+-------+-----+
4 rows in set (0.00 sec)
按照从低到高排列
mysql> select name,math+physics+literature as zf from chengji order by zf desc
+-------+-----+
| name | zf |
+-------+-----+
| jim | 277 |
| harry | 166 |
| john | 142 |
| bill | 134 |
+-------+-----+
4 rows in set (0.00 sec)
按照从高到低的顺序排列
内建函数
Sum、avg、min、max、
mysql> select avg(math), avg(physics) from chengji;
+-----------+--------------+
| avg(math) | avg(physics) |
+-----------+--------------+
| 72.5000 | 55.7500 |
+-----------+--------------+
1 row in set (0.00 sec)
mysql> select min(math) from chengji;
+-----------+
| min(math) |
+-----------+
| 60 |
+-----------+
1 row in set (0.00 sec)
mysql> select max(math) from chegnji;
ERROR 1146 (42S02): Table 'toys.chegnji' doesn't exist
mysql> select max(math) from chengji;
+-----------+
| max(math) |
+-----------+
| 96 |
+-----------+
1 row in set (0.00 sec)
Limit后面跟的2个参数是从开始行的位置和要显示行的个数
mysql> select * from chengji order by math desc limit 0,4;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 2 | jim | 96 | 89 | 92 |
| 4 | harry | 69 | 85 | 12 |
| 3 | bill | 65 | 12 | 57 |
| 1 | john | 60 | 37 | 45 |
+----+-------+------+---------+------------+
4 rows in set (0.00 sec)
mysql> select * from chengji order by math desc limit 2,4;
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 3 | bill | 65 | 12 | 57 |
| 1 | john | 60 | 37 | 45 |
+----+------+------+---------+------------+
2 rows in set (0.00 sec)
通配符模糊查询
mysql> select * from chengji where name like '%j%';
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 1 | john | 60 | 37 | 45 |
| 2 | jim | 96 | 89 | 92 |
+----+------+------+---------+------------+
2 rows in set (0.00 sec)
mysql> select math from chengji where name like '%j%';
+------+
| math |
+------+
| 60 |
| 96 |
+------+
2 rows in set (0.02 sec)
mysql> select name,math from chengji where math like '%9%';
+-------+------+
| name | math |
+-------+------+
| jim | 96 |
| harry | 69 |
+-------+------+
2 rows in set (0.00 sec)
mysql> select * from haha,chengji;
查询多个表里面所有字段,也可以查询出来需要的字段
mysql> select m.hyht,v.math from haha m,chengji v;
别名
SQL基础
User 库名——使用某个库
Show 表名——显示表的各个字段
Select count (*) from callslog ——显示一共有多少条记录
mysql> create database toys;——建立个数据库
Query OK, 1 row affected (0.02 sec)
mysql> use toys;
Database changed
mysql> show tables;
Empty set (0.01 sec)
mysql> create table user(id int(11) not null auto_increment,primary key(id));
建立个表
mysql> create table status(id int(11) not null,video_id tinyint(11) not null);
Query OK, 0 rows affected (0.08 sec)
mysql> alter table status add (hyht varchar(255));
Query OK, 0 rows affected (0.28 sec)
Records: 0 Duplicates: 0 Warnings: 0
增加字段
mysql> alter table status rename haha;
Query OK, 0 rows affected (0.03 sec)
Alter的用法
mysql> CREATE TABLE t1 (a INTEGER,b CHAR(10));
重命名表,从t1到t2:
mysql> ALTER TABLE t1 RENAME t2;
为了改变列a,从INTEGER改为TINYINT NOT NULL(名字一样),并且改变列b,从CHAR(10)改为CHAR(20),同时重命名它,从b改为c:
mysql> ALTER TABLE t2 MODIFY a TINYINT NOT NULL, CHANGE b c CHAR(20);
增加一个新TIMESTAMP列,名为d:
mysql> ALTER TABLE t2 ADD d TIMESTAMP;
在列d上增加一个索引,并且使列a为主键:
mysql> ALTER TABLE t2 ADD INDEX (d), ADD PRIMARY KEY (a);
删除列c:
mysql> ALTER TABLE t2 DROP COLUMN c;
增加一个新的AUTO_INCREMENT整数列,命名为c:
mysql> ALTER TABLE t2 ADD c INT UNSIGNED NOT NULL AUTO_INCREMENT,
ADD INDEX (c);
注意,我们索引了c,因为AUTO_INCREMENT柱必须被索引,并且另外我们声明c为NOT NULL,因为索引了的列不能是NULL。 当你增加一个AUTO_INCREMENT列时,自动地用顺序数字填入列值。
mysql> insert into t2 (a,c)values(1,'hghg');
Query OK, 1 row affected (0.03 sec)
添加记录
mysql> alter table t2 drop column c;
Query OK, 0 rows affected (0.25 sec)
Records: 0 Duplicates: 0 Warnings: 0
删除列
mysql> alter table t2 add (c varchar(255));
Query OK, 0 rows affected (0.25 sec)
Records: 0 Duplicates: 0 Warnings: 0
增加列
注意:一个表中必须有主键才能在mysql插件中直接编辑,否则edit那项为灰色
mysql> delete from haha where video_id=2;
Query OK, 1 row affected (0.03 sec)
有条件的删除数据
mysql> update haha set hyht='tt'where hyht='1';
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2 Changed: 2 Warnings: 0
更新数据
mysql> select * from haha;
+----+----------+------+
| id | video_id | hyht |
+----+----------+------+
| 1 | 3 | tt |
| 2 | 3 | erer |
| 3 | 3 | tt |
| 4 | 1 | tt |
| 5 | 2 | tt |
+----+----------+------+
5 rows in set (0.01 sec)
mysql> select hyht from haha
+------+
| hyht |
+------+
| tt |
| erer |
| tt |
| tt |
| tt |
+------+
5 rows in set (0.00 sec)
mysql> select distinct hyht
+------+
| hyht |
+------+
| tt |
| erer |
+------+
2 rows in set (0.01 sec)
三个select 查询语句
mysql> select * from haha where video_id>2;
+----+----------+------+
| id | video_id | hyht |
+----+----------+------+
| 1 | 3 | tt |
| 2 | 3 | erer |
| 3 | 3 | tt |
+----+----------+------+
3 rows in set (0.00 sec)
mysql> select * from chengji;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 1 | john | 60 | 37 | 45 |
| 2 | jim | 96 | 89 | 92 |
| 3 | bill | 65 | 12 | 57 |
| 4 | harry | 69 | 85 | 12 |
+----+-------+------+---------+------------+
4 rows in set (0.00 sec)
查询chengji表
mysql> select * from chengji where math>90;
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 2 | jim | 96 | 89 | 92 |
+----+------+------+---------+------------+
1 row in set (0.00 sec)
查询math〉90 分的人
mysql> select name from chengji where math>85 and physics>85 and literature >85;
+------+
| name |
+------+
| jim |
+------+
1 row in set (0.00 sec)
查询出来的优秀学生
mysql> select * from chengji where math<25 or physics <25 or literature <25;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 3 | bill | 65 | 12 | 57 |
| 4 | harry | 69 | 85 | 12 |
+----+-------+------+---------+------------+
2 rows in set (0.00 sec)
其中有一门没有过25分的学生
mysql> select name,math+physics+literature from chengji;
+-------+-------------------------+
| name | math+physics+literature |
+-------+-------------------------+
| john | 142 |
| jim | 277 |
| bill | 134 |
| harry | 166 |
+-------+-------------------------+
得出三门成绩的总分数
mysql> select name,math+physics+literature as zf from chengji order by zf;
+-------+-----+
| name | zf |
+-------+-----+
| bill | 134 |
| john | 142 |
| harry | 166 |
| jim | 277 |
+-------+-----+
4 rows in set (0.00 sec)
按照从低到高排列
mysql> select name,math+physics+literature as zf from chengji order by zf desc
+-------+-----+
| name | zf |
+-------+-----+
| jim | 277 |
| harry | 166 |
| john | 142 |
| bill | 134 |
+-------+-----+
4 rows in set (0.00 sec)
按照从高到低的顺序排列
内建函数
Sum、avg、min、max、
mysql> select avg(math), avg(physics) from chengji;
+-----------+--------------+
| avg(math) | avg(physics) |
+-----------+--------------+
| 72.5000 | 55.7500 |
+-----------+--------------+
1 row in set (0.00 sec)
mysql> select min(math) from chengji;
+-----------+
| min(math) |
+-----------+
| 60 |
+-----------+
1 row in set (0.00 sec)
mysql> select max(math) from chegnji;
ERROR 1146 (42S02): Table 'toys.chegnji' doesn't exist
mysql> select max(math) from chengji;
+-----------+
| max(math) |
+-----------+
| 96 |
+-----------+
1 row in set (0.00 sec)
Limit后面跟的2个参数是从开始行的位置和要显示行的个数
mysql> select * from chengji order by math desc limit 0,4;
+----+-------+------+---------+------------+
| id | name | math | physics | literature |
+----+-------+------+---------+------------+
| 2 | jim | 96 | 89 | 92 |
| 4 | harry | 69 | 85 | 12 |
| 3 | bill | 65 | 12 | 57 |
| 1 | john | 60 | 37 | 45 |
+----+-------+------+---------+------------+
4 rows in set (0.00 sec)
mysql> select * from chengji order by math desc limit 2,4;
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 3 | bill | 65 | 12 | 57 |
| 1 | john | 60 | 37 | 45 |
+----+------+------+---------+------------+
2 rows in set (0.00 sec)
通配符模糊查询
mysql> select * from chengji where name like '%j%';
+----+------+------+---------+------------+
| id | name | math | physics | literature |
+----+------+------+---------+------------+
| 1 | john | 60 | 37 | 45 |
| 2 | jim | 96 | 89 | 92 |
+----+------+------+---------+------------+
2 rows in set (0.00 sec)
mysql> select math from chengji where name like '%j%';
+------+
| math |
+------+
| 60 |
| 96 |
+------+
2 rows in set (0.02 sec)
mysql> select name,math from chengji where math like '%9%';
+-------+------+
| name | math |
+-------+------+
| jim | 96 |
| harry | 69 |
+-------+------+
2 rows in set (0.00 sec)
mysql> select * from haha,chengji;
查询多个表里面所有字段,也可以查询出来需要的字段
mysql> select m.hyht,v.math from haha m,chengji v;
别名
发表评论
-
MYSQL完全手册学习笔记(练习时候的数据库)
2008-10-23 11:14 2043MYSQL完全手册学习笔记(练习时候的数据库) 4-10章的 -
MYSQL完全手册学习笔记(第十章)
2008-10-23 11:05 1800连接 交叉连接 mysql> select * ... -
MYSQL完全手册学习笔记(第九章)
2008-10-21 17:51 1225使用数据 插入、更新 和删除记录 插入 Inser ... -
MYSQL完全手册学习笔记(第八章)
2008-10-20 11:30 2273使用数据库和表 创建数据库 mysql> crea ... -
MYSQL完全手册学习笔记(第七章)
2008-10-16 17:31 1496MYSQL函数 mysql> select round ... -
MySQL 5.1参考手册
2008-10-15 15:49 1196http://dev.mysql.com/doc/refman ... -
MYSQL完全手册学习笔记(第六章)
2008-10-15 15:47 1159运算符 算数运算符 mysql> select 10+ ... -
MYSQL完全手册学习笔记(第五章)
2008-10-15 14:41 1151数据类型 Float(5,2)规定显示的值不会超过5位数字 ... -
MySQL 5.1新特性之事件调度器(Event Scheduler)
2008-10-15 14:39 1359MySQL 5.1新特性之事件调度器(Event Schedu ... -
MySQL常用命令及基本操作总结
2008-10-15 10:46 1850MySQL常用操作基本操作,以下都是MySQL5.0下测试通过 ... -
Mysql命令集锦
2008-09-04 17:45 861Mysql命令集锦 MySQL常 ... -
mysql 驱动文件
2008-08-26 10:04 1538mysql 驱动文件 -
mysql帮助文档
2008-08-26 10:00 2418mysql 的帮助文档说明 -
Mysql命令集锦
2008-08-23 09:32 1008Mysql命令集锦 MySQL常 ...
相关推荐
MYSQL完全手册MYSQL完全手册MYSQL完全手册MYSQL完全手册MYSQL完全手册
《MYSQL完全手册学习笔记》是针对MySQL数据库系统的一份详细学习资料,主要涵盖了数据库的各个方面,包括基础概念、安装配置、SQL语法、表的设计、索引、事务处理、视图、存储过程、触发器、备份恢复等。这些知识点...
### MySQL核心技术学习笔记 #### 一、为什么要学习数据库 学习数据库的重要性主要体现在以下几个方面: 1. **持久化数据到本地**:数据库能够将应用程序产生的数据持久化存储在磁盘上,即使系统重启也不会丢失...
四、MySQL介绍 MySQL是一个开源、高性能、易于使用的数据库系统。它有社区版(免费)和企业版(收费)。在Windows上安装MySQL可以选择不同的版本,然后通过服务管理工具或命令行来启动和停止MySQL服务。用户可以通过...
MySQL中文完全手册,扫描版,PDF版,自己逐个加了目录,绝壁比市面上别的文档要好用!
《MySQL完全手册(中文)》是MySQL数据库管理系统的一部详尽参考指南,旨在为读者提供全面、深入的MySQL知识。本书基于《MySQL: The Complete Reference》的中文翻译,覆盖了MySQL的所有核心概念、功能和最佳实践,...
数据库 MySQL 学习笔记高级篇.md
MySQL学习笔记.chmMySQL学习笔记.chmMySQL学习笔记.chmMySQL学习笔记.chm
mysql的完全参考手册,电子书籍,共1846页,可以说完全囊括了mysql的全部奥秘。打包成了两部分,请下载后一起解压缩。这是第二部份
美河提供.MYSQL完全手册 美河提供.MYSQL完全手册 美河提供.MYSQL完全手册 美河提供.MYSQL完全手册
MySQL OCP 超详细学习笔记$pdf MySQL OCP 超详细学习笔记.pdf 是一份详细的 MySQL 学习笔记,旨在帮助 MySQL DBA master 数据库管理的知识和技能。本笔记涵盖了 MySQL 的多个方面,包括 MySQL 的配置、性能优化、...
MySQL 高可用学习笔记 mysqlrouter_MHA 本文档主要讲解了 MySQL Router 和 MHA 的高可用配置和测试步骤。MySQL Router 是一个提供高可用和负载均衡的工具,而 MHA 是一个提供高可用和自动failover 的工具。下面我们...
这份"mysql完全手册"旨在为学习MySQL的用户提供全面的参考指南,涵盖从基础概念到高级特性的各种操作和查询。 手册可能会包括以下几个主要部分: 1. **MySQL安装与配置**:这部分会介绍如何在不同操作系统上安装...
这份“MySQL学习笔记”将引导我们深入理解其核心概念和实用技能。 一、MySQL简介 MySQL是一个开源、免费的数据库系统,由瑞典的MySQL AB公司开发,后被Oracle公司收购。它的设计目标是速度、可移植性和简洁性,支持...
MySQL优化学习思维笔记.xmind
这份“MySQL个人学习笔记”涵盖了从基础到进阶的多个方面,旨在帮助学习者全面理解MySQL的使用。 1. **安装与配置**: 在开始学习MySQL之前,你需要了解如何在不同的操作系统上安装MySQL服务器,如Windows、Linux...
这份"超经典mysql DBA学习笔记"涵盖了成为一名优秀DBA所需掌握的众多知识点,旨在帮助学习者深入理解MySQL数据库的运维与优化。 一、MySQL概述 MySQL是一种开源、免费的关系型数据库管理系统,广泛应用于互联网应用...
美河提供.MYSQL完全手册.pdf ,易操作
### MySQL DBA深度学习笔记知识点概述 #### 一、MySQL版本选择与下载 - **MSI与ZIP包区别**: - **MSI文件**:适用于Windows系统,提供图形化安装界面,支持自定义安装路径及组件选择等功能,适合希望进行定制化...