MySQL:命令整理
常用函数
函数 | 备注 |
---|---|
database() | 获取当前use的数据库名称 |
version() | 获取数据库版本信息 |
ifnull(field, 'Something') | 测试是否为空,为空则返回默认值 |
current_date() | 获取当前日期 |
select rol_id, ifnull(remark, 'No Remark') from rol;
特殊查询
- limit:限制查询结果条数
select * from rol limit 5;
- 查询到文件中:
select content into dumpfile 'd:/1.hex' from wf_process where name='projectFlow';