达梦SQL书写注意事项

模糊查询

模糊查询like后面的字段要求用单引号引用,不能使用双引号

select * from user where name like '%小组'

分组查询

select查询的列字段必须在分组中的字段存在

正确:

select name,age from user group by name,age

错误:

 select * from user group by name,age

常用函数

函数 | 达梦技术文档 (dameng.com) 

你可能感兴趣的:(sql,数据库)