-
MySQL教程之常用SQL语句
主要总结mysql一些常用知识点
[常用命令]
1、查看数据库
show database;
2、创建数据库
create database database_name;
3、切换数据库
use database_name;
4、查看某数据库中所有的数据表
show table;
5、创建数据表
View Code
6、查看数据表结构
describe table_name; --缩写: desc
7、查看数据表中的记录
select * from table_name; -- 去重复 select distinct name from table_name
8、往数据表中添加数据记录
INSERT INTO table_name VALUES('puffball','Diane','hanst','f','1999-03-23',NULL); -- 指定属性 insert into user3 (name) value('asfjl');
9、删除数据
delete from table_name where name='puffball';
10、修改数据
update table_name set name='wang' where owner='haha'
11、建表约束--主键
View Code
12、建表约束--自增
create table user3( id int primary key auto_increment, name varchar(20) );
12、建表约束--唯一:约束修饰的字段的值不可以重复
View Code
13、非空约束:修饰的字段不能为NULL
create table user6( id int, name varchar(20) not null ); -- 反null? 异常 insert into user6 (name) value('jfsl');
14、默认约束
create table user7( id int, name varchar(20), age int default 10 ); insert into user7 (id,name) value(1,'slfj'); insert into user7 (id,name,age) values(1,'slsfj',5);
15、外键约束
create table classes( id int primary key, name varchar(20) ); create table students( id int primary key, class_id int, foreign key(class_id) references classes(id) );
[查询]
1、多表查询
-- 两表查询 select sname,cno, degree from student,score where student.sno = score.sno; -- 三表查询 select sname, cname,degree from student,course,course,score where student.sno = score.sno and course.cno = score.cno;
2、分组查询
-- 子查询加分组求评均 select cno, avg(degree) from score where sno in (select sno from student where class='1233') group by cno; -- year函数与带in关键字的子查询 select * from student where year(sbirthday) in (select year(sbirthday) from student where sno in (108,117));
3、多层嵌套查询
View Code
4、union与not in
View Code
5、any与all
-- any表示至少一个 select * from score where cno='34' and degree>any(select degree from score where cno='334') order by degree desc; -- all表示所有 select * from score where cno='34' and degree>all(select degree from score where cno='334') order by degree desc;
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式