标签:mon 目录 字符串 img data concat sel 整理 日期函数
目录
加减乘除,模除
select 10+3, 10-3, 10*3, 10/3, mod(10,3);
与,或,非
select 1|0, 1&0, !1;
异或
select abs(-1), pi(), sqrt(4), ceil(9.9), floor(9.9), round(9.9), round(9.1), sign(-3), pow(2,3), log(2,4);
select char_length(‘abc‘), concat(‘abc‘, ‘--‘, ‘abc‘);
select curdate(), now(), current_timestamp(), year(now()), month(now()), day(now());
其他
select user(), version();
库相关
create database db1;
drop database db1;
表相关
create table t1 (id int);
创建表,自增
create table t1(id int auto
创建表,主键
create table t0(id int primary key, id2 int);
创建表,索引
删除表内容
删除表
update
replace
标签:mon 目录 字符串 img data concat sel 整理 日期函数
原文地址:https://www.cnblogs.com/liurong07/p/12810531.html