数据类型
数字类型
整型: tinyint 、 bit 、 bool 、 smallint 、 mediumint 、 int 、 bigint
浮点型: float 、double 、 decimal
字符串(字符)类型
普通字符串: char(长度固定) 、 varchar(长度可变)
可变类型: text(适合存文本) 、 blob(适合二进制数据,如图像、声音)
特殊类型: set(一组值) 、 enum(一组值中的一个)
日期和时间类型
date (日期:2016-02-22)、 time(时间:00:23:20) 、 datetime(日期和时间: 2016-02-22 00:23:20) 、timestamp(时间标签,格式取决于M) 、 year(年份 2016).
运算符
算数运算符: 加 减 乘 除 求余
比较运算符: = < > >= <= != <> ‘is null’ ‘is not null’ ‘between and’ ‘[not] in’ ‘[not] like’ ‘regexp’
逻辑运算符: && AND || OR ! not xor
位运算符: & | ~ ^ << >>