朝花夕誓
MySQL函数 MySQL函数
一、字符函数(1)字符拼接 字符拼接–concat() 拼接字符串并作为列输出 语法:concat(str1, str2,...) # 查询学生表中的数据,并将id、nam、score三字段拼接 select concat (id, na
2021-08-24
常用sql语句 常用sql语句
一、时间相关(1)时间范围查询 查询当天数据 select * from table where to_days(column_time) = to_days(now()); select * from table where date(
2021-08-18
MySQL建库建表 MySQL建库建表
一、建表1、数据类型(1)数值类型 整数类型 字节 范围 用途 tinyint 1 -128~127 很小的整数 smallint 2 -32768~32767 mediumint 24位 -8388608~838860
2021-04-07
MySQL基本语法 MySQL基本语法
一、注意事项 sql语法以分号结尾,并且不区分大小写 所有非数字的值都要加单引号 #为注释 sql语句执行顺序 1)from 2)join 3)on 4)where 5)group by 6)having 7)select 8)order
2021-03-30
MySQL时间转化函数 MySQL时间转化函数
一、MySQL时间数据类型mysql字段的时间类型分为5种:DATE,DATETIME,TIME,TIMESTAMP,YEAR;说实话这五种类型我以前只用datetime,为什么用大家都用这个,所以今天趁这个机会整理学习一下。 类型
2021-02-25
2 / 2