mysql常用命令整理
目录
1.数据类型
2.运算符
数学运算符
加减乘除,模除
select 10+3, 10-3, 10*3, 10/3, mod(10,3);
逻辑运算符
与,或,非
select 1|0, 1&0, !1;
异或
3.函数
数学函数
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();
4.索引
5.sql语句
库相关
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
相关推荐
苏康申 2020-11-13
vitasfly 2020-11-12
CoderToy 2020-11-16
emmm00 2020-11-17
王艺强 2020-11-17
ribavnu 2020-11-16
bianruifeng 2020-11-16
wangshuangbao 2020-11-13
vivenwan 2020-11-13
moyekongling 2020-11-13
云中舞步 2020-11-12
要啥自行车一把梭 2020-11-12
aydh 2020-11-12
kuwoyinlehe 2020-11-12
minerk 2020-11-12
jazywoo在路上 2020-11-11
敏敏张 2020-11-11
世樹 2020-11-11