摘要:1.字符串函数concat('a','b'); 字符串拼接函数insert("abcd",1,2,"我是A我是B"); 从指定位置开始替换指定长度的指定数据(起步为1)lower() 转小写upper() 转大写left("abcd",2) 返回abright("abcd",2) 返回cdlpad(...
阅读全文
随笔分类 - Mysql
摘要:1.字符串函数concat('a','b'); 字符串拼接函数insert("abcd",1,2,"我是A我是B"); 从指定位置开始替换指定长度的指定数据(起步为1)lower() 转小写upper() 转大写left("abcd",2) 返回abright("abcd",2) 返回cdlpad(...
阅读全文
摘要:取模有2种方法:10 % 5 或 mod(10,5)比较一个字段的值是不是null有两种方法:is null 或 null 不能直接使用 where id = null;是不对的
阅读全文
摘要:1.数值型decimal(65) decimal最大支持65位bit(10) 最大支持10位的二进制存储模式bin(column),hex(column) 使用bin(二进制查看)或hex(十六进制查看)查看bit类型数据2.时间日期型年月日 date年月日时分秒 datetime时分秒 time时...
阅读全文
摘要:1 mysql -h localhost -u root -p123456 登录mysql服务器 2 show databases 列出所拥有的数据库 3 use www 选择一个www的数据库 4 show tables 列出该库的数据表 5 create table emp (id int a...
阅读全文
摘要:1、使用distinct查询所有不重复的记录2、创建数据表相同结构的临时表,将第一步的数据复制进去 create temporary table if not exists student_temp as (select distinct(name), sex from student);3、tru...
阅读全文
|