IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> 数据库sql的基本操作 -> 正文阅读

[大数据]数据库sql的基本操作

管理数据库结构

创建删除数据库

create database 数据库名称 ;
drop database 数据库名称;

查看数据库

show databases;

选择数据库

use 数据库名称;

操作数据表sql

创建数据表
create table 表名(
字段名 类型;
)

create table student (
id int not null;
name varchar(10) not null;
age int not null;
score int not null;
);

删除数据表

drop table 表名;

查看数据表的结构

desc 表名;

修改数据表

  1. 新增一个字段 alter table 表名 add 字段名 类型
  2. 修改一个字段 alter table 表名 change 旧字段名 新字段名 新字段类型
  3. 删除一个字段 alter table 表名 drop 字段名

sql函数

数学函数

abs(字段名) 求绝对值
select abs(num) from student;

floor()返回小于参数的最大整数
select floor(score) from student;

ceil()返回大于参数的最大整数;
select ceil(score) from student;

字符串函数

insert (str,index,length,changeStr)
str中index位置开始,长度为length的字符替换为changeStr,index1开始
select insert(name,2,2,'mysqlStr') from user;

upper(),ucase()
将字母值变为大写
select upper(name) from user;
select ucase(name) from user;

lower(),lcase()
将字母值变为小写
select lower(name) from user;
select lcase(name) from user;

left(str,len)
返回str字符串的前len个字符
select left(name,3) from user;

right(str,len)
返回str字符串的后len个字符
select right(name,3) from user;

substring(str,index,len)
截取str,从index位置开始,长度为len
select substring(name,2,2) from user;

reverse()
反序输出
select reverse(name) from user;

日期函数

curdate() current_date() 获取当前日期
select current_date();
select curdate();

curtime() current_time() 获取当前时间
select curtime();
select current_time();

now() 获取当前的日期和时间
select now();

datediff(day1,day2) 计算两时间相隔的天数
select datediff('2022-5-1','2022-3-31');

adddate(day,num) 计算day日期num之后的天数
select adddate('2022-2-20',173);
 
subdate(day,num)计算day日期num之前的天数
select subdate('2022-2-20',173);

聚合函数

count() 根据某个字段统计记录数
select count(*) from user;

sum() 计算某个字段值的总和
select sum(num) from user;

avg() 求某个字段值的平均值
select avg(num) from user;

max() 求某个字段值的最大值
select max(num) from user;

min() 求某个字段值的最小值
select min(num) from user;

select name,count(id) from user group by name order by count(id) desc;

select name,count(id) from user group by name having count(id) > 2 order by count(id) desc;

where 和 having 的区别

where 和 having 都是追加条件的,区别在于 SQL 是否进行了分组查询,如果进行了分组查询则使用 having,如果没有进行分组查询则使用 where。

SQL 运算符

算术运算符

1、执行运算符:加减乘除

select num+100 from user;

2、比较运算符:大于、等于、小于、不等于

select num > 100 from user;

3、逻辑运算符:&&、||、!

select !(num < 100 || num > 50) from user;

特殊运算符

1、is null 判断字段值是否为空

select name is null from user;

2、between and 判断字段值是否在某个区间之内

select num between 50 and 100 from user;

3、in 判断字段值是否在某个确定值的集合内

select name from user where id in (1,2,3);
select name from user where id = 1 || id = 2 || id = 3;

4、like 模糊查询

包含’电脑’

select * from user where name like '%电脑%';

以’电脑’开头

select * from user where name like '电脑%';

以’电脑’结尾

select * from user where name like '%电脑';

name 长度为 2

select * from user where name like '__';

name 长度为 3,并且以’电’开头

select * from user where name like '电__';

name 长度为 3,中间为’电’

select * from user where name like '_电_';

name 长度为 3,以’电’结尾

select * from user where name like '__电';

数据 CRUD

CRUD

create 创建

read 读取

update 修改

delete 删除

添加数据

insert into 数据表(字段列表) values(字段值)
insert into user VALUES('数据库',300,33);

查询数据

select 字段列表 from 数据表名;
select id,name from user;
select * from user;

修改数据

update 数据表名 set 字段名=字段值,字段名=字段值,... where 条件

删除数据

delete from 数据表名 where 条件
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-02-16 13:11:15  更:2022-02-16 13:13:18 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:35:59-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码