MySQL-04:数据内容操作-增删改查-基本命令笔记

1、增

insert into 表 (列名,列名...) values (值,值,值...)
insert into 表 (列名,列名...) values (值,值,值...),(值,值,值...)
insert into 表 (列名,列名...) select (列名,列名...) from 表

2、删

delete from 表
delete from 表 where id=1 and name='alex'

3、改

update 表 set name = 'alex' where id>1

4、查

select * from 表
select * from 表 where id > 1
select nid,name,gender as gg from 表 where id > 1

5、其他

a、条件select * from 表 where id > 1 and name != 'alex' and num = 12;select * from 表 where id between 5 and 16;select * from 表 where id in (11,22,33)select * from 表 where id not in (11,22,33)select * from 表 where id in (select nid from 表)b、通配符select * from 表 where name like 'ale%'  - ale开头的所有(多个字符串)select * from 表 where name like 'ale_'  - ale开头的所有(一个字符)c、限制select * from 表 limit 5;            - 前5行select * from 表 limit 4,5;          - 从第4行开始的5行select * from 表 limit 5 offset 4    - 从第4行开始的5行d、排序select * from 表 order by 列 asc              - 根据 “列” 从小到大排列select * from 表 order by 列 desc             - 根据 “列” 从大到小排列select * from 表 order by 列1 desc,列2 asc    - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序e、分组select num from 表 group by numselect num,nid from 表 group by num,nidselect num,nid from 表  where nid > 10 group by num,nid order nid descselect num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nidselect num from 表 group by num having max(id) > 10特别的:group by 必须在where之后,order by之前f、连表无对应关系则不显示select A.num, A.name, B.namefrom A,BWhere A.nid = B.nid无对应关系则不显示select A.num, A.name, B.namefrom A inner join Bon A.nid = B.nidA表所有显示,如果B中无对应关系,则值为nullselect A.num, A.name, B.namefrom A left join Bon A.nid = B.nidB表所有显示,如果B中无对应关系,则值为nullselect A.num, A.name, B.namefrom A right join Bon A.nid = B.nidg、组合组合,自动处理重合select nicknamefrom Aunionselect namefrom B组合,不处理重合select nicknamefrom Aunion allselect namefrom B

摘抄自:https://www.cnblogs.com/wupeiqi/articles/5713315.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/280916.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

火狐和chrome_Firefox,Chrome和Edge都将支持WebAuthn的硬件两因素身份验证

火狐和chromeLogging into Gmail or Facebook could soon mean plugging in a USB device, potentially making phishing a thing of the past. 登录Gmail或Facebook可能很快就意味着要插入USB设备,这可能使网络钓鱼成为过去。 That’s thanks to WebAuthn, a new o…

Could not delete .........May be locked by another process.

问题 原因:默认的设置是文件修改后立即发布,这样的设置是在你每个保存文件时都会触发,如果tomcat已经在运行,这样频繁的操作也会造成文件锁死 解决: Tomcat 右键clean 转载于:https://www.cnblogs.com/feiZhou/p/93…

flask的基础1

1.python 现阶段三大主流web框架Django Tornado Flask的对比 1.Django 主要特点是大而全,集成了很多组件,例如: Models Admin Form 等等, 不管你用得到用不到,反正它全都有,属于全能型框架 2.Tornado 主要特点是原生异步非阻塞,在IO密集型应用和多任务处理上占据绝对性的优势,属…

python实现批量压缩文件夹

前段时间碰到一个需要把目录下文件夹压缩的项目,但是度娘里没找到,只好自己写脚本了。 #coding:utf-8 import os filePath raw_input("请输入路径:") if filePath "":os._exit() #需要退出ds list(os.walk(filePath…

单元测试01:nunit 安装与代码测试

1.nunit 下载与安装 a.下载 下载地址: http://nunit.org/download/ b.添加到系统环境变量 解压下载包后,添加两个路径到环境变量,如: D:\nunitD:\nunit\nunit-console 2.建立测试项目 a.建立class project b.project 里re…

如何将您的Google Authenticator凭证移至新的Android手机或平板电脑

Most of the app data on your Android is probably synced online will automatically sync to a new phone or tablet. However, your Google Authenticator credentials won’t — they aren’t synchronized for obvious security reasons. Android上的大多数应用程序数据可…

关于经纬度的两个计算[Teaksxgluxv]

一、子午线周长(公里) 40008.548 赤道周长(公里) 40075.704 纬度40008.548 / 360(度) 111.135 公里/度40008.548 / (360*60)(分) 1.85 公里/分40008.548 / (360*60*60)(秒) 30.87 米/秒 经度首先算相应经度位置的纬度圈长度40075.704 * cos(经度)然后方法相同,除…

转载通过 Docker 实现传统应用程序的现代化

长期以来,IT 组织将其预算的 80% 用于简单地维护现有应用程序,而只花费 20% 用于创新。 在过去的 10 年里,这一比例并没有太大改观。而同时又必须面对创新的压力。无论是直接来自客户的需求,要求提供新的功能,还是来自…

org.eclipse.jdt.internal.compiler包下的类找不到

到maven库上下载jar包&#xff1a;org.eclipse.jdt.core-3.13.jar <!-- https://mvnrepository.com/artifact/org.eclipse.jdt/org.eclipse.jdt.core --><dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.core<…

单元测试02:Open-Cover安装与使用

1.Open-Cover 用于测试代码是否被测试过。 1.下载open-cover与ReportGenerator 2.下载压缩包后&#xff0c;设置系统环境变量&#xff0c;如&#xff1a; D:\OpenCover D:\OpenCover\ReportGenerator2.执行 OpenCover.console -register -target:nunit3-console.exe -targ…

Blazor学习之旅 (6) 路由系统

【Blazor】| 总结/Edison Zhou大家好&#xff0c;我是Edison。许久没有更新Blazor学习系列了&#xff0c;今天续更。Blazor 的路由系统就和 ASP.NET MVC的路由系统一样&#xff0c;可以为我们提供灵活的选项&#xff0c;可用于确保用户请求到达可处理它们并返回用户想要的信息的…

kindle降级卡大树_从提示框:Kindle购物流程图,iOS降级和DIY焊接笔

kindle降级卡大树Once a week we round up some of the tips from the HTG tips box and share them with the greater readership; this week we’re looking at shopping for Kindles with a flowchart, downgrading iOS, and rolling your own DIY soldering pen. 每周一次&…

MS CRM 2011 Form与Web Resource在JScript中的相互调用

原创地址&#xff1a;http://www.cnblogs.com/jfzhu/archive/2013/02/14/2912580.html 转载请注明出处 在Form中可以添加一个html的web resource&#xff0c;在web resource里可以用JScript来使用REST Endpoint或者SOAD Endpoint。 你可以在Form中添加一个web resource&#xf…

判断字符是否在1-15之间

var str $(#name).val();//获取字符的value var reg /^\S{1,15}$/; //字符在1-15之间的正则 var flag reg.test(str); // 判断字符与正则是否匹配 if(!flag){ //提示不满足条件 }转载于:https://www.cnblogs.com/yxl-java/p/8617661.html

从 .NET 6 更新到 .NET 7

Upgrade from .NET 6 to .NET 7Intro.NET 7 已经发布了一段时间了&#xff0c;将几个服务升级到了 .NET 7&#xff0c;升级还是比较顺利的&#xff0c;也有遇到几个问题&#xff0c;分享一下TargetFramework首先我们需要将项目文件中的目标框架&#xff08;TargetFramework&…

MySQL-05:pymysql与pycharm设置

PyMySQL介绍 PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库&#xff0c;Python2中则使用mysqldb。 Django中也可以使用PyMySQL连接MySQL数据库。 PyMySQL安装 pip install pymysql 连接数据库 前置条件&#xff1a; 已有一个MySQL数据库&#xff0c;并且…

如何将前端数据保存到文件

有时候&#xff0c;网页上需要提供将当前页面上的数据导出为本地文件的功能&#xff0c;例如将页面上的一个表格导出为csv文件。这个功能看似简单&#xff0c;实际上却没有什么直接的方法。由于导出文件的操作&#xff08;比如浏览文件目录&#xff0c;创建本地文件等&#xff…

hdmi-cec_如何使用HDMI-CEC使用PlayStation 4或Pro自动打开电视

hdmi-cecCall it petty, but there’s just something about eliminating the “turn on the TV” portion of firing up your PlayStation 4 that makes the whole process seem faster. And the good news is that getting this action on your setup is as easy and ticking…

Microsoft POS for .NET v1.12 发布了

Microsoft POS for .NET v1.12是一个类库&#xff0c;它为你的.NET应用程序与POS设备的交互提供了一组简单统一的接口。使得供应商能够为常见的POS设备(如收银机&#xff0c;扫描仪等)轻松开发出通用的应用程序&#xff0c;您可以在此处下载.POSv1.12的更新&#xff1a;与 UPOS…

【APP接口开发】常用HTTP响应头状态码详解

1、200 OK&#xff0c;客户端请求城成功 2、400 Bad Request &#xff0c;客服端请求语法错误&#xff0c;服务器无法理解和处理 3、401 unauthorized&#xff0c;请求未通过认证 4、403 permission forbidden &#xff0c;无权限 5、404 URI不存在&#xff0c;访问的资源不存在…