10.16下午 CRUD

1.MySQL注释语法--,#

2.2.后缀是.sql的文件是数据库查询文件。

3.保存查询。 关闭查询时会弹出提示是否保存,保存的是这段文字,不是表格(只要是执行成功了表格已经建立了)。保存以后下次再查询的话列表里面会出现保存的表格,双击就可以打开文字,看到以前写的内容。

CRUD操作:
create 创建(添加)
read 读取
update 修改
delete 删除

1、添加数据
insert into Info values(‘p009‘,‘张三‘,1,‘n001‘,‘2016-8-30 12:9:8‘) ;
给特定的列添加数据
insert into Info (code,name) values(‘p010‘,‘李四‘);
自增长列的处理
insert into family values(‘‘,‘p001‘,‘数据‘,‘T001‘,‘数据‘,1);

insert into 表名 values(值)

2、删除数据
删除所有数据
delete from family
删除特定的数据
delete from Info where code=‘p001‘

delete from 表名 where 条件

3、修改数据
修改所有数据
update Info set name=‘徐业鹏‘
修改特定数据
update Info set name=‘吕永乐‘ where code=‘p002‘
修改多列
update Info set name=‘吕永乐‘,sex=1 where code=‘p003‘

update 表名 set 要修改的内容 where 条件

4、读取数据
(1)简单读取,查询所有列(*) 所有行(没有加条件)
select * from Info
(2)读取特定列
select code,name from Info
(3)条件查询
select * from Info where code=‘p003‘
(4)多条件查询
select * from Info where code=‘p003‘ or nation=‘n002‘ #或的关系
select * from Info where sex=0 and nation=‘n002‘ #与的关系
(5)关键字查询(模糊查询)
查所有包含奥迪的汽车
select * from car where name like ‘%奥迪%‘; #百分号%代表任意多个字符
查以‘皇冠‘开头的所有汽车
select * from car where name like ‘皇冠%‘;
查询汽车名称中第二个字符是‘马‘的
select * from car where name like ‘_马%‘; #下划线_代表任意一个字符
(6)排序查询
select * from car order by powers #默认升序排列
select * from car order by powers desc #升序asc 降序 desc
先按brand升序排,再按照price降序排
select * from car order by brand,price desc

时间: 2024-10-20 21:34:16

10.16下午 CRUD的相关文章

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用 扩展 iptables应用在一个网段 http://www.aminglinux.com/bbs/thread-177-1-1.html sant,dnat,masquerade http://www.aminglinux.com/bbs/thread-7255-1-1.html iptables限制syn速率 http://www.aminglinux.com/bbs/thre

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中。例如123放在num[0]中,456放在num[1]中……统计共有多少个整数,并输出这些数。

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中.例如123放在num[0]中,456放在num[1]中--统计共有多少个整数,并输出这些数. #include <stdio.h> int main(){ void search(char * parr, int * pnum); char arr[100],* parr; int num[30],* pnum; parr=arr;

C# 中2,10,16进制及其ASCII码之间转化

C# 中2,10,16进制及其ASCII码之间转化             --------//C#中各种字符类型的转化,使用于串口通信------------ //字符长度的理解            string s = "我是一个2兵";            int len = s.Length;//6个字符              byte[] sarr = System.Text.Encoding.Default.GetBytes(s);            len =

4月10日下午学习日志

   2017年4月10日下午复习了高等数学,继续看了张宇高等数学基础班课程视频第四讲考研数学的基本定理串讲十大基本理论综述及其例题讲解,在此过程中能巩固之前所学内容,不懂的问题得以解决,印象也更加深刻,对复习有很大的帮助,背英语单词100个°

ERROR: openstack Error finding address for http://10.16.37.215:9292/v1/images: [Errno 32] Broken pipe

Try to set: no_proxy=10.16.37.215 this should help 转自: http://askubuntu.com/questions/575938/error-in-devstack-installing-on-ubuntu

ERROR 2003 (HY000): Can&amp;#39;t connect to MySQL server on &amp;#39;10.16.115.101&amp;#39; (111)

ubuntu安装之后mysql,使用apt-get安装命令,默认为同意只本地访问 [email protected]:~/software# mysql -uroot -p123456 -h10.16.115.101 -P3306 ERROR 2003 (HY000): Can't connect to MySQL server on '10.16.115.101' (111) 默认配置文件: 须要把bind-address凝视掉 重新启动mysql服务 [email protected]:~/

10.16会议记录

时间:2016.10.16晚10:00 人员:项浩哲.孟建文.刘松林 记录人:孟建文 内容: 汇报各自之前对市场上已有的坦克大战类游戏调研分析,说明其中的亮点 头脑风暴,结合调研分析提出对经典90坦克大战的改编想法,包括场景和规则 对Idea进行可行性评判和选择融合,制定项目"坦克大战"的详细游戏规则 对需求文档任务分工

ERROR 2003 (HY000): Can&#39;t connect to MySQL server on &#39;10.16.115.101&#39; (111)

ubuntu安装完mysql,使用apt-get命令安装的,默认是只允许本地访问的 [email protected]:~/software# mysql -uroot -p123456 -h10.16.115.101 -P3306 ERROR 2003 (HY000): Can't connect to MySQL server on '10.16.115.101' (111) 默认配置文件: 需要把bind-address注释掉 重启mysql服务 [email protected]:~/s

10.15 iptables filter表小案例;10.16—10.18 iptables nat

扩展: 1. iptables应用在一个网段: http://www.aminglinux.com/bbs/thread-177-1-1.html 2. sant,dnat,masquerade: http://www.aminglinux.com/bbs/thread-7255-1-1.html 3. iptables限制syn速率: http://www.aminglinux.com/bbs/thread-985-1-1.html 10.15 iptables filter表小案例 ipta