2017-08-15 18:03:17

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| animal_protected   |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set

mysql> use animal_protected;
Database changed
mysql> show tables;
+----------------------------+
| Tables_in_animal_protected |
+----------------------------+
| user_info                  |
+----------------------------+
1 row in set

mysql> desc user_info;
+---------+--------------+------+-----+---------+-------+
| Field   | Type         | Null | Key | Default | Extra |
+---------+--------------+------+-----+---------+-------+
| ID      | smallint(4)  | NO   | PRI | NULL    |       |
| name    | char(4)      | NO   |     | NULL    |       |
| kind    | char(2)      | NO   |     | NULL    |       |
| number  | mediumint(6) | YES  |     | NULL    |       |
| address | varchar(8)   | NO   |     | NULL    |       |
+---------+--------------+------+-----+---------+-------+
5 rows in set

mysql> select*from user_info;
+------+--------+------+--------+----------+
| ID   | name   | kind | number | address  |
+------+--------+------+--------+----------+
| 1801 | 美洲豹 | 猫科 |  16663 | 墨西哥   |
| 1802 | 非洲象 | 象科 | 357281 | 津巴布韦 |
| 1803 | 亚洲象 | 象科 |  52359 | 印度     |
| 1804 | 金钱豹 | 猫科 |     78 | 孟加拉   |
+------+--------+------+--------+----------+
4 rows in set

mysql> select name from user_info;
+--------+
| name   |
+--------+
| 美洲豹 |
| 非洲象 |
| 亚洲象 |
| 金钱豹 |
+--------+
4 rows in set

mysql> insert into user_info(ID,name,kind,number,address)values(1805,'白熊','熊科',21006,'北极
');
Query OK, 1 row affected
1062 - Duplicate entry '1805' for key 'PRIMARY'
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1806,'美洲豹','猫科',130508,'墨西哥
');
Query OK, 1 row affected
1062 - Duplicate entry '1806' for key 'PRIMARY'
    -> ;
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected

;' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1807,'棕熊','熊科',90086,'阿富汗
');
Query OK, 1 row affected
1062 - Duplicate entry '1807' for key 'PRIMARY'
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1808,'华南虎','猫科',0,'中国
');
Query OK, 1 row affected
1062 - Duplicate entry '1808' for key 'PRIMARY'
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1809,'熊猫','熊科',1668,'中国
');
Query OK, 1 row affected
1062 - Duplicate entry '1809' for key 'PRIMARY'
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1810,'孟加拉虎','猫科',5102,'孟加拉
');
Query OK, 1 row affected
1062 - Duplicate entry '1810' for key 'PRIMARY'
    -> ;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Query OK, 1 row affected' at line 1
mysql> insert into user_info(ID,name,kind,number,address)values(1811,'东北虎,'猫科',21,'中国
');
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '猫科',21,'中国');

insert into user_info(ID,name,kind,number,address)valu' at line 1
mysql>
mysql> select*from user_info;
+------+----------+------+--------+----------+
| ID   | name     | kind | number | address  |
+------+----------+------+--------+----------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥   |
| 1802 | 非洲象   | 象科 | 357281 | 津巴布韦 |
| 1803 | 亚洲象   | 象科 |  52359 | 印度     |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉   |
| 1805 | 白熊     | 熊科 |  21006 | 北极     |
| 1806 | 美洲豹   | 猫科 | 130508 | 墨西哥   |
| 1807 | 棕熊     | 熊科 |  90086 | 阿富汗   |
| 1808 | 华南虎   | 猫科 |      0 | 中国     |
| 1809 | 熊猫     | 熊科 |   1668 | 中国     |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉   |
+------+----------+------+--------+----------+
10 rows in set

mysql> insert into user_info(ID,name,kind,number,address)values(1811,'东北虎','猫科',21,'中国');
Query OK, 1 row affected
mysql> select*from user_info;
+------+----------+------+--------+----------+
| ID   | name     | kind | number | address  |
+------+----------+------+--------+----------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥   |
| 1802 | 非洲象   | 象科 | 357281 | 津巴布韦 |
| 1803 | 亚洲象   | 象科 |  52359 | 印度     |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉   |
| 1805 | 白熊     | 熊科 |  21006 | 北极     |
| 1806 | 美洲豹   | 猫科 | 130508 | 墨西哥   |
| 1807 | 棕熊     | 熊科 |  90086 | 阿富汗   |
| 1808 | 华南虎   | 猫科 |      0 | 中国     |
| 1809 | 熊猫     | 熊科 |   1668 | 中国     |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉   |
| 1811 | 东北虎   | 猫科 |     21 | 中国     |
+------+----------+------+--------+----------+
11 rows in set

mysql> select *from user_info where kind="猫科";
+------+----------+------+--------+---------+
| ID   | name     | kind | number | address |
+------+----------+------+--------+---------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥  |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉  |
| 1806 | 美洲豹   | 猫科 | 130508 | 墨西哥  |
| 1808 | 华南虎   | 猫科 |      0 | 中国    |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉  |
| 1811 | 东北虎   | 猫科 |     21 | 中国    |
+------+----------+------+--------+---------+
6 rows in set

mysql> select *from user_info where number<2000;
+------+--------+------+--------+---------+
| ID   | name   | kind | number | address |
+------+--------+------+--------+---------+
| 1804 | 金钱豹 | 猫科 |     78 | 孟加拉  |
| 1808 | 华南虎 | 猫科 |      0 | 中国    |
| 1809 | 熊猫   | 熊科 |   1668 | 中国    |
| 1811 | 东北虎 | 猫科 |     21 | 中国    |
+------+--------+------+--------+---------+
4 rows in set

mysql> updata user_info set address="美国" where ID=1806;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'updata user_info set address="美国" where ID=1806' at line 1
mysql> select *from user_info;
+------+----------+------+--------+----------+
| ID   | name     | kind | number | address  |
+------+----------+------+--------+----------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥   |
| 1802 | 非洲象   | 象科 | 357281 | 津巴布韦 |
| 1803 | 亚洲象   | 象科 |  52359 | 印度     |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉   |
| 1805 | 白熊     | 熊科 |  21006 | 北极     |
| 1806 | 美洲豹   | 猫科 | 130508 | 墨西哥   |
| 1807 | 棕熊     | 熊科 |  90086 | 阿富汗   |
| 1808 | 华南虎   | 猫科 |      0 | 中国     |
| 1809 | 熊猫     | 熊科 |   1668 | 中国     |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉   |
| 1811 | 东北虎   | 猫科 |     21 | 中国     |
+------+----------+------+--------+----------+
11 rows in set

mysql> update user_info set name='美洲狮' address='美国' where ID=1806;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'address='美国' where ID=1806' at line 1
mysql> update user_info set name="美洲狮" where ID=1806;
Query OK, 1 row affected
Rows matched: 1  Changed: 1  Warnings: 0
mysql> update user_info set address="美国" where ID=1806;
Query OK, 1 row affected
Rows matched: 1  Changed: 1  Warnings: 0
mysql> select*from user_info;
+------+----------+------+--------+----------+
| ID   | name     | kind | number | address  |
+------+----------+------+--------+----------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥   |
| 1802 | 非洲象   | 象科 | 357281 | 津巴布韦 |
| 1803 | 亚洲象   | 象科 |  52359 | 印度     |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉   |
| 1805 | 白熊     | 熊科 |  21006 | 北极     |
| 1806 | 美洲狮   | 猫科 | 130508 | 美国     |
| 1807 | 棕熊     | 熊科 |  90086 | 阿富汗   |
| 1808 | 华南虎   | 猫科 |      0 | 中国     |
| 1809 | 熊猫     | 熊科 |   1668 | 中国     |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉   |
| 1811 | 东北虎   | 猫科 |     21 | 中国     |
+------+----------+------+--------+----------+
11 rows in set

mysql> delect from user_info where number>100000;
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'delect from user_info where number>100000' at line 1
mysql> delete from user_info where number>100000;
Query OK, 2 rows affected
mysql> select*from user_info;
+------+----------+------+--------+---------+
| ID   | name     | kind | number | address |
+------+----------+------+--------+---------+
| 1801 | 美洲豹   | 猫科 |  16663 | 墨西哥  |
| 1803 | 亚洲象   | 象科 |  52359 | 印度    |
| 1804 | 金钱豹   | 猫科 |     78 | 孟加拉  |
| 1805 | 白熊     | 熊科 |  21006 | 北极    |
| 1807 | 棕熊     | 熊科 |  90086 | 阿富汗  |
| 1808 | 华南虎   | 猫科 |      0 | 中国    |
| 1809 | 熊猫     | 熊科 |   1668 | 中国    |
| 1810 | 孟加拉虎 | 猫科 |   5102 | 孟加拉  |
| 1811 | 东北虎   | 猫科 |     21 | 中国    |
+------+----------+------+--------+---------+
9 rows in set

mysql>

sql lesson21homework的更多相关文章

  1. 最近帮客户实施的基于SQL Server AlwaysOn跨机房切换项目

    最近帮客户实施的基于SQL Server AlwaysOn跨机房切换项目 最近一个来自重庆的客户找到走起君,客户的业务是做移动互联网支付,是微信支付收单渠道合作伙伴,数据库里存储的是支付流水和交易流水 ...

  2. SQL Server 大数据搬迁之文件组备份还原实战

    一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 解决方案(Solution) 搬迁步骤(Procedure) 搬迁脚本(SQL Codes) ...

  3. Sql Server系列:分区表操作

    1. 分区表简介 分区表在逻辑上是一个表,而物理上是多个表.从用户角度来看,分区表和普通表是一样的.使用分区表的主要目的是为改善大型表以及具有多个访问模式的表的可伸缩性和可管理性. 分区表是把数据按设 ...

  4. SQL Server中的高可用性(2)----文件与文件组

        在谈到SQL Server的高可用性之前,我们首先要谈一谈单实例的高可用性.在单实例的高可用性中,不可忽略的就是文件和文件组的高可用性.SQL Server允许在某些文件损坏或离线的情况下,允 ...

  5. EntityFramework Core Raw SQL

    前言 本节我们来讲讲EF Core中的原始查询,目前在项目中对于简单的查询直接通过EF就可以解决,但是涉及到多表查询时为了一步到位就采用了原始查询的方式进行.下面我们一起来看看. EntityFram ...

  6. 从0开始搭建SQL Server AlwaysOn 第一篇(配置域控)

    从0开始搭建SQL Server AlwaysOn 第一篇(配置域控) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www.cnb ...

  7. 从0开始搭建SQL Server AlwaysOn 第二篇(配置故障转移集群)

    从0开始搭建SQL Server AlwaysOn 第二篇(配置故障转移集群) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www ...

  8. 从0开始搭建SQL Server AlwaysOn 第三篇(配置AlwaysOn)

    从0开始搭建SQL Server AlwaysOn 第三篇(配置AlwaysOn) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://w ...

  9. 从0开始搭建SQL Server AlwaysOn 第四篇(配置异地机房节点)

    从0开始搭建SQL Server AlwaysOn 第四篇(配置异地机房节点) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www ...

随机推荐

  1. 实例分析jdom和dom4j的使用和区别 (转)

    实例分析jdom和dom4j的使用和区别   对于xml的解析和生成,我们在实际应用中用的比较多的是JDOM和DOM4J,下面通过例子来分析两者的区别(在这里我就不详细讲解怎么具体解析xml,如果对于 ...

  2. js类型判断:typeof与instanceof

    typeof用以获取一个变量或者表达式的类型,typeof一般只能返回如下几个结果: number,boolean,string,function(函数),object(NULL,数组,对象),und ...

  3. 本地服务CURL请求本地另一个服务API返回超时/或无返回

    入职之后一直在忙,终于有时间整理一波最近踩到的坑. 起因: 项目是微服务架构,一个项目对外提供API,新的项目调用API获得数据.于是就在本地搭建了两个服务.配置了两个虚拟域名,指向两个项目,当然我本 ...

  4. redis多实例与主从同步及高级特性(数据过期机制,持久化存储)

    redis多实例 创建redis的存储目录 vim /usr/local/redis/conf/redis.conf #修改redis的配置文件 dir /data/redis/ #将存储路径配置修改 ...

  5. Spring对象依赖关系

    Spring中,如何给对象的属性赋值?  [DI, 依赖注入] 1) 通过构造函数 2) 通过set方法给属性注入值 3) p名称空间   4)自动装配(了解) 5) 注解 package loade ...

  6. C标准库中转换wchar_t和char类型的字符串

    C 库函数 - mbstowcs()  C 标准库 - <stdlib.h> 描述 C 库函数 size_t mbstowcs(schar_t *pwcs, const char *str ...

  7. 小D课堂 - 新版本微服务springcloud+Docker教程_3-07 Eureka服务注册中心配置控制台问题处理

    笔记 7.Eureka服务注册中心配置控制台问题处理     简介:讲解服务注册中心管理后台,(后续还会细讲) 问题:eureka管理后台出现一串红色字体:是警告,说明有服务上线率低 EMERGENC ...

  8. 直连路由onlink

    根据路由器学习路由信息.生成并维护路由表的方法包括直连路由(Direct).静态路由(Static)和动态路由(Dynamic).直连路由:路由器接口所连接的子网的路由方式称为直连路由:非直连路由:通 ...

  9. Linux学习笔记:shell

    目录 通配符 特殊符号 变量 环境变量 默认变量 shell script case if for until while function 本文更新于2019-08-23. 通配符 *:0个至无穷多 ...

  10. kubeadm安装集群系列-5.其他操作

    常用的一些操作记录 imagePullSecrets kubectl -n [namespace] create secret docker-registry regsecret --docker-s ...