SQL数据库 CRUD
1.删除表
drop table +表名
2.修改表
alter table+表名+ add(添加)+列名+ int(类型)
alter table+表名+ drop(删除)+column(列)+列名
3.删除数据库
Drop datebase +库名
CRUD操作
C代表create 添加数据
R代表 read 读取数据
U代表update 修改数据
D代表delete 删除数据
1.添加数据
Insert(插入/添加) into+ 表名+ values(添加的值) ,‘ ’转换字符串
Insert into Nation values(‘n002’,‘回族’)
Insert into Nation values(‘n003’,‘’)
多列添加:Insert into Nation(code,name) values(‘n003’,‘维吾尔族’)
Insert into friends values(‘p003’,‘p007’)
2.删除数据
delete from Nation 删除所有
delete from friends where ids=5
3.修改数据
update Friends set fcode=‘’p016’ 修改所有
update Friends set fcode=‘p006’,mcode=‘p002’where ids=4
查询
1.简单查询
select * from info(表名) --查所有数据
select code,name from info --查指定列的数据
select code as ‘代号’,name as ‘姓名’ from info (改变列名) --给列指定别名
2.条件查询
select * from info where code=‘p001’
select * from info where sex=‘true’,and nation=‘n001’ --多条件并的关系
select * from info where sex=‘true’,or nation=‘n001’ --多条件或的关系
3.范围查询
select * from car where price>40 and price<50
select * from car where price between 40 and 50
4.离散查询
select * from car where code in(‘c001’,‘c005’,‘c010’,‘c015’)
select * from car where code not in(‘c001’,‘c005’,‘c010’,‘c015’)
5.模糊查询
select * from car where name like ‘%宝马%’ --查包含宝马的
select * from car where name like ‘宝马%’ --查以宝马开头的
select * from car where name like ‘%宝马 --查以宝马结尾的’
select * from car where name like ‘宝马’ --查等与宝马的
select * from car where name like‘__E%’ --查第三个字符是E的
%代表是任意多个字符
_代表是一个字符
6.排序查询
select * from car order by price asc --以价格升序排列
select * from car order by price desc –以价格降序排列
select * from car order by 0il desc, price asc --以两个字段排序,前面的是主条件后面的是次要条件
7.分页查询
select top 5 * from car
select top 5 * from car where code not in (select top 5 code from car)
当前页:page = 2 row= 10
select top row * from car where code not in (select top (page-1) * row code from car)
8.去重查询
select distinct brand from car
9.分组查询
select Brand from car group by Brand having count(*)>2
10.聚合函数(统计查询)
select count(*)查询完以后到底有多少数据 from car –查询所有数据条数
select count(code) from car --查询所有数据条数
select sum(price) from car(表名) 求和
select sum(price) from car 求和
select sum(price) from car 求和
select sum(price) from car 求和
SQL数据库 CRUD的更多相关文章
- SQL数据库—<2>数据库基本操作(CRUD)
学习基本操作语句之前先简单了解数据库的基本数据类型: 数据类型: 二进制数据:以十六进制形式存储 固定长度:binary 可变长度:varbinary 字符数据 ...
- 【转载】ADO.NET与ORM的比较(3):Linq to SQL实现CRUD
[转载]ADO.NET与ORM的比较(3):Linq to SQL实现CRUD 说明:个人感觉在Java领域大型开发都离不了ORM的身影,所谓的SSH就是Spring+Struts+Hibernate ...
- JDBC-ODBC桥连接方式操纵SQL数据库
/** * 功能:演示使用JDBC-ODBC桥连接方式操纵SQL数据库 * 作者:徐守威 * 操作步骤: * 1.配置数据源 * 2.在程序中连接数据源 * 3.操作数据 */ pack ...
- 数据库CRUD操作以及MyBatis的配置使用
• 业务字段设计 • 数据库创建 • CRUD操作 • MyBatis集成 • 注解和XML定义 • ViewObject和DateTool • 首页开发 • 业务字段设计 实体: name: ...
- 试用 Azure Sql 数据库
我们的12月试用账号的免费服务里有一个Azure Sql服务,最近正好自己做一个小工具需要一个数据库,正好可以把它当测试库顺便体验一把Azure Sql. 概述 Azure SQL 数据库 Azure ...
- CQL和SQL的CRUD操作比较
数据进行CRUD操作时,CQL语句和SQL语句的异同之处. 1.建表 2.CRUD语句比较 3.总结 1.建表 在此之前先分别创建两张表,插入数据,用来测试然后进行比较 在SQL数据库里面创建表 在C ...
- KTV项目 SQL数据库的应用 结合C#应用窗体
五道口北大青鸟校区 KTV项目 指导老师:袁玉明 歌曲播放原理 SQL数据库关系图 C#解决方案类图 第一步:创建数据库连接方法和打开方法和关闭方法! public class DBHelper { ...
- jquery autocomplete实现读取sql数据库自动补全TextBox
转自我本良人 原文 jquery autocomplete实现读取sql数据库自动补全TextBox 项目需要这样子一个功能,其他部门提的意见,只好去实现了哦,搞了好久才弄出来,分享一下. 1.前台页 ...
- SQL数据库
SQL是Structured Query Language(结构化查询语言)的缩写.SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言.在使用它时,只需要发出“做什么”的命令,“怎么做” ...
随机推荐
- [CF930E]/[CF944G]Coins Exhibition
[CF930E]/[CF944G]Coins Exhibition 题目地址: CF930E/CF944G 博客地址: [CF930E]/[CF944G]Coins Exhibition - skyl ...
- hidefocus小技巧
hidefocus即隐藏聚焦,具有使对象聚焦失效的功能,其功能相当于: onFocus="this.blur()" 它的值是一个布尔值,如 hidefocus="true ...
- sqlserver 调试WINDBG ---troubleshootingsql.com
https://troubleshootingsql.com/tag/stack-dump/ Debugging that latch timeout Posted on August 26, 201 ...
- Swift,循环及判断
1.for循环(执行固定次数的操作) (1)基本数组循环 var a=[1,2,3] for value in a{ print(value) //1 2 3 } (2)自定义循环次数 for i i ...
- 数组中的push()和pop()方法
push()方法可以接受任意数量的参数,把它们逐个添加到数组末尾,并返回修改后数组的长度. pop()方法是从数组末尾移除最后一项,减小数组的length值,然后返回移除的项. var arr = [ ...
- Hive中日期函数总结
--Hive中日期函数总结: --1.时间戳函数 --日期转时间戳:从1970-01-01 00:00:00 UTC到指定时间的秒数 select unix_timestamp(); --获得当前时区 ...
- S6:组合模式 Composite
将对象组合成树形结构以表示整体-部分的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性. UML: 示例代码:透明组合:叶节点和子节点具有相同的接口 abstract class Com ...
- 使用Python发送电子邮件
使用python发送邮件并不难,这里使用的是SMTP协议. Python标准库中内置了smtplib,使用它发送邮件只需提供邮件内容与发送者的凭证即可. 代码如下: # coding:utf-8 im ...
- python——TypeError: 'str' does not support the buffer interface
import socket import sys port=51423 host="localhost" data=b"x"*10485760 #在字符串前加 ...
- lodash escapeRegExp 转义正则特殊字符
_.escapeRegExp([string='']) 转义RegExp 中特殊的字符 "^", "$", "\", ".&quo ...