本文概述
- 1.字符串文字
- 例子1
- 例子2
- 2.数字字面量
- 例子1
- 例子2
1.字符串文字 在MySQL中, 字符串文字使用单引号(‘ )或双引号(“ )。
例子1
Select class from table1 where name='Dolly';
文章图片
例子2
Select class from table1 where name="Dolly";
文章图片
2.数字字面量 【MySQL字面量(常量)】在MySQL中, 数字文字是正数或负数。
例子1
Select class from table1 where id = 6;
文章图片
例子2
Select class from table1 where marks = +65;
文章图片
推荐阅读
- MySQL字面量(日期和时间)
- MySQL游标
- MySQL last()函数
- MySQL max()函数
- MySQL注释
- MySQL first()函数
- MySQL min()函数
- MySQL sum()函数
- MySQL avg()函数