mariadb数据库增删改查

1.常用数据类型

1)整数:int, bit

2)小数:decimal       #decimal(5,2)表示共有五位数,保留两位小数

3)字符串:varchar, char                        

4)日期时间:date, time, datetime

5)枚举类型(enum)

 

2.约束

1)主键primary key:物理上存储的顺序

2)非空not null:此字段不能为空

3)唯一unique:此字段不允许重复

4)默认default:当不填写此值时会使用默认值,如果填写则已填写为准

5)外键foreign key:对关系字段进行约束,当为关系字段填写值时,会到关联的表中查询此值是否存在,如果存在则填写成功,如果不存在则填写失败并抛出异常

数值类型
类型字节大小有符号范围无符号范围
TINYINT1-127~1270~255
SMALLINT2-32768~327670~65535
MEDIUMINT3-8388608~83886070~16777215
INT/INTEGER4-2147483648~21474836470~4294967265
BIGINT8-9223372036854775808~-92233720368547758070~18446744073709551615
字符串
类型字节大小示例
CHAR0-255char(3)不管输入几个字节都会占3个字节
VARCHAR0-255varchar(3)输入比三小的字节会占用实际字节大小
TEXT0-65535大文本
日期时间类型
DATE4‘2020-01-01’
TIME3’12:05:34’
DATETIME8‘2020-01-01  12:05:34’
YEAR1‘2019’
TIMESTAMP4‘1970-01-01  00:00:01’UTC~‘2038-01-01  00:00:01’UTC

3.sql语句alter

显示当前时间

select now();

 

创建classes表(id, name)

create table zzzz(

    id int primary key not null auto_increment,

    name varchar(20),

    age int

);

 

查看表结构

desc zzzz

 

1)创建students表(id, name, age, high, gender, cls_id)

create table students (

    id int unsigned not null auto_increment primary key,

    name varchar(20),

    age tinyint unsigned default 0,

    high decimal(5,2),

    gender enum('男', '女', '中性', '保密') default '保密',

    cls_id int unsigned

);

 

创建classes表(id, name)

create table classes(

    id int unsigned not null auto_increment primary key,

    name varchar(20)

);

 

2)修改表属性

修改表-添加字段

alter table 表名 add 列名 类型;

alter table students add birthday datetime;

 

修改表-修改字段:不重命名版

 alter table 表名 modify 列名 类型及约束;

alter table students modify birthday date;

 

修改表-修改字段:重命名版

alter table 表名 change 原名 新名 类型及约束;

alter table students change birthday birth date;

 

3)修改表-删除字段

alter table 表名 drop 列名;

alter table students drop birthday;

 

4) 删除表

drop table 表名;

drop table students;

 

4.sql语句增加insert

1)全列插入

insert into 表名 values(..)    主键字段 可以用0 null default 来站位

向students表里插入 一个学生信息

insert into students values (0,'小明',19,188.999,'男', 1);

             

2)部分插入

        insert into students(id, name, age) values (0,'绿帽子',19);

        部分插入(多条记录)

        insert into students(id, name, age) values (0,'绿帽子',19),(0,'小跳蚤',21);

       

5.sql语句修改update

update 表名 set 列1=值1, 列2=值2... where 条件;

update students set age=100 where id=1;

update students set age=100,cls_id=77 where id=1;

 

6.sql语句删除delete与truncate

1)物理删除

delete from 表名 where 条件

delete from students where cls_id=88;   

 

2)逻辑删除

用一条字段来表示 这条信息是否已经不能在使用了

给students表添加一个is_delete字段 bit 类型

alter table students add is_delete bit default 0;

update students set is_delete=1 where id=6;

 

3)truncate

清空表,连同id字段自增重置为1,重新插入的数据id默认会从1开始,用truncate删除的数据无法恢复

truncate students

 

7.sql语句查看select

查询基本使用(条件,排序,聚合函数,分组,分页)

1)查询所有列

select * from 表名

select * from students;

 

一定条件查询(where)

select * from where id=5;

   

查询制定列

select id,name from students;

   

使用as给字段起别名

select id,name as '姓名', age, high, gender from students;

   

通过表名字段查询

select students.name from students;

   

给表起别名查询

select s.id,s.name,s.age from students as s;

   

消除重复行

distinct

select distinct age from students;

 

2)条件查询

查询年纪大于18岁的信息

select * from students where age > 18;

       

18岁到28岁之间(and)

select * from students where age >= 18 and age =< 28;    允许使用&&

select * from students where age between 18 and 28

 

在18岁以上或者身高180以上的人(or)

select * from students where age > 18 or high > 180;    允许使用||

 

3)模糊查询like

% 替代1个或者多个甚至是没有

查询姓名中有‘小’的所有名字

select * from students where name like '%小%';

 

查询两个字人的名字

select * from students where name like '__';    两个下划线

 

查询至少有2个字的名字

select * from students where name like '%__%';

 

4)范围查询

in (1,3,8)表示在一个非连续的范围内

查询年纪为18和34的人

select * from students where age in (18, 34);

 

查询 年龄在17岁到34岁之间的信息

select * from students where age between 17 and 34;

 

查询 年纪不在18到34岁的信息

select * from students where age not between 17 and 34;

 

5)空判断

判断is null

查询身高为空的人的信息

select * from students where high is null;

 

6)排序order by

asc从小到大排列,即升序

desc从大到小排序,即降序

order by支持多字段

 

查询年纪在18到34岁之间的男性,按照年纪从小到大

select * from students where gender=1 and age between 18 and 34 order by age;

 

查询年纪在18到34岁之间的女性,身高从高到矮

select * from students where gender=2 and age between 18 and 34 order by high desc;

 

查询年纪在18到34岁的男性,身高从高到矮排序,如果身高相同的情况下按照年纪从小到大排序,如果年龄也相等那么按照id从小到大排序;

select * from students where age between 18 and 34 and gender=1 order by high desc,age,id;

       

8.聚合函数

1)总数count

查询男性有多少人

select count(*) from students where gender=1;

 

2)最大值max

查询最大的年纪

select max(age) from students;

 

查询女性的最高身高

select max(high) from students where gender=2;

 

3)最小值 min

select min(high) from students;

 

4)求和sum

计算所有人的年龄总和

select sum(age) from students;

 

5)平均值avg

计算平均年纪 sum(age)/count(*)

select sum(age)/count(*) from students;

select avg(age),2 from students;

 

保留2位小数

select round(avg(age),2) from students;

   

6)分组group by

按照性别分组,查询所有的性别

select gender from students group by gender;

 

计算每组性别的人数

select gender, count(*) from students group by gender;

 

查询男性组中的姓名 group_concat

select gender,group_concat(name) from students where gender=1 group by gender;    group_concat()按照拼接后的字符串显示

 

7)having

查询每个性别平均年纪超过30岁的性别,以及姓名 having avg(age) > 30

select gender, group_concat(name) from students group by gender having avg(age) > 30;

 

查询每种性别中的人数多于4个的组的信息

select gender,group_concat(name) from students group by gender having count(*)>4;

 

8)分页limit

显示5页

select * from students limit 5;

 

分页显示,每页显示2条数据

select * from students limit 0, 2;

 

按照身高从高到矮排序,查找出所有女性,并且分页显示,每页显示2条数据

select * from students where gender=2 order by high desc limit 0,2;

 

转载于:https://www.cnblogs.com/Agnostida-Trilobita/p/11134115.html

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

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

相关文章

为什么你工作努力却没有起色?

成为职场达人&#xff0c;未必要经常挑灯夜战。相反&#xff0c;注意到下面几条&#xff0c;会让你少走弯路。 1&#xff09;成长的机会永远比眼前的待遇重要——做重要的事比多拿钱重要。 我知道在水木bbs上的worklife版本&#xff0c;每天都在上演的就是比较自己的第一个o…

《 Spring 实战 》(第4版) 读书笔记 (未完结,更新中...)

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 Pxx 表示在书的第 xx 页。 Spring 框架的核心是 Spring 容器。 1. (P7.) 构造器注入是依赖注入的方式之一。 紧耦合&#xff1a;在 …

数据结构排序法之希尔排序法(Shell Sort)

希尔排序&#xff0c;也叫递减增量排序&#xff0c;是插入排序的一种更高效的改进版本。希尔排序是不稳定的排序算法。 希尔排序是基于插入排序的以下两点性质而提出改进方法的&#xff1a; 1、插入排序在对几乎已经排好序的数据操作时&#xff0c;效率高&#xff0c;即可以达…

Windows To Ghost系统封装之必备软件集 - 好压

好压压缩软件&#xff08;HaoZip&#xff09;是强大的压缩文件管理器&#xff0c;是完全免费的新一代压缩软件&#xff0c;相比其它压缩软件系统资源占用更少&#xff0c;有更好的兼容性&#xff0c;压缩率比较高。 它提供了对ZIP、7Z和TAR文件的完整支持&#xff0c;能解压RAR…

js 弹窗并定时关闭

1. $(input).click(function() {prompt(点击成功, 2000) })function prompt(newName, time, fn) {var $div $(<div></div>);$div.css({position: fixed,top: 0,left: 0,width: 100%,height: 100%,z-index: 200,background-color: rgba(0,0,0,0.4),// background-c…

数据结构排序法之插入法

插入排序是一种简单直观的排序算法。它的工作原理非常类似于我们抓扑克牌。 对于未排序数据(右手抓到的牌)&#xff0c;在已排序序列(左手已经排好序的手牌)中从后向前扫描&#xff0c;找到相应位置并插入。 插入排序在实现上&#xff0c;通常采用in-place排序&#xff08;即…

XSLT学习笔记

1. 样式声明&#xff1a;<xsl:stylesheet>或<xsl:transform> 2. XSLT常用元素&#xff1a; 2.1 <xsl:template>&#xff1a;创建模板 Match属性的作用是使模板和XML元素相关联 e.g.:<xsl:template match"\">......</xsl:template&g…

职场:人生从没有最佳时机!一个离职客服人员的领悟

每个人都有感到失落迷惘的时候。 人生用专制又霸道的方式运行着&#xff0c;每当我们心想一切尘埃落定、生活稳固的时候&#xff0c;生活总爱给我们惊喜&#xff0c;粉碎我们短暂的安逸&#xff0c;让我们不得不重新思考。 「我走对路了吗?」 「我能够赚更多钱、爬到更高的地位…

VS Code 的常用快捷键

VS Code 的常用快捷键和插件 一、vs code 的常用快捷键 前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 1、注释&#xff1a; a) 单行注释&#xff1a;[ctrlk,ctrlc] 或 ctrl/ b) 取消…

vue-axios interceptors

import axios from axios import cookie from js-cookie const options {baseURL: window.location.protocol process.env.BASE_API,headers: {},timeout: 20000 } const fetch axios.create(options)// request拦截器 fetch.interceptors.request.use(config > {if (coo…

数据结构排序法之鸡尾酒排序法he快速排序法

鸡尾酒排序&#xff0c;也叫定向冒泡排序&#xff0c;是冒泡排序的一种改进。此算法与冒泡排序的不同处在于从低到高然后从高到低&#xff0c;而冒泡排序则仅从低到高去比较序列里的每个元素。他可以得到比冒泡排序稍微好一点的效能。 // 两两互换 void swap (int* a, int i, …

VSCode 多开、环境对比

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 多开&#xff1a; 第一种&#xff1a;win10的开始菜单&#xff0c;在vscode图标右键选择“新开窗口”&#xff0c;这样就多了一个vscode…

前言_工作两年自我感触

17年大学毕业&#xff0c;到今天整整工作两年&#xff0c;从前端到数据分析&#xff0c;从上家公司&#xff08;简称A&#xff09;到现公司&#xff0c;想趁着今天是参加工作两年的纪念日&#xff0c;回忆过往&#xff0c;结合现状有感而发。 刚毕业的时候&#xff0c;啥都学&a…

数据结构排序法之堆排序he归并排序

堆排序&#xff08;Heapsort&#xff09;是指利用堆这种数据结构所设计的一种排序算法。堆是一个近似完全二叉树的结构&#xff0c;并同时满足堆性质&#xff1a;即子结点的键值或索引总是小于&#xff08;或者大于&#xff09;它的父节点。 堆排序的时间&#xff0c;主要由建…

超详细设置 Idea 类注释模板和方法注释模板

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 网上找了一下&#xff0c;没有很详细且正确介绍Idea配置注释模板的&#xff0c;于是结合多篇文章自己琢磨整理出如下。 设置类注释模板…

手动创建两个文本文件text1.txt和text2.txt,按要求创建text3.txt

实现在text1.txt和text2.txt文件中除去首行和末尾对应的数据&#xff0c;要求三个文本内容如下&#xff1a; text1 text2 text3begin begin begin10 11 12 15 16 17 …

感情

团结 共患难的感情转载于:https://www.cnblogs.com/yyjh/p/11139749.html

谁抢走了中国男人的老婆?

“老夫少妻”、“包二奶”、“洋媳妇”、“单身贵族”、“丁克家庭”都是当今最时髦的词汇。这看似“你情我愿”的现象背后竟隐藏着巨大隐患! 目前中国男女比例是119&#xff1a;100&#xff0c;某些地区已达130&#xff1a;100;中国将有5百万以上光棍&#xff0c;这对中国社会…

latex 幻灯片演示模板

http://zzg34b.w3.c361.com/templet/slide.htm转载于:https://www.cnblogs.com/binterminator/articles/1621647.html

Linux 文件系统编程之系统调用和标准I/O库

系统调用 访问设备驱动程序的底层函数主要有&#xff1a; open:打开文件或者设备。 read:从打开的文件或者设备里面读取数据。 write:向文件或者设备写数据。 close:关闭文件或者设备。 open系统调用&#xff1a; #include <fcntl.h> #include <sys/types.h> #in…