+---------------+
| (8+2)*(3-2)/3 |
+---------------+
|3.3333 |
+---------------+
mysql>select 10 div 3 % 2
+--------------+
| 10 div 3 % 2 |
+--------------+
|1 |
+--------------+
1.2 逻辑运算符
>,>=,<,<=,!=,<>,=,<=>
between,not between,in,not in
like,regexp
is null,is not null
1.3 位运算符
|,&,~,<<,>>,^
mysql查询字符串中包含字符的步骤如下:
我们需要准备的材料分别是:mysql查询器。
1、首先,用mysql查询器连接上mysql连接,以test表(5条数据)查询包含“gle”字符为例。
2、点击“查询”按钮,输入:select * from test where `name` like "%gle%"(查询出包含gle字符的字符串)。
3、点击“运行”按钮,此时会查询到name字段包含“gle”字符的两条数据记录。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)