postgresql和mysql数据库的一些操作
前些天操作了一下postgresql,发现和mysql有点不一样,比如分组的时候它select的字段必须在group by的里边有,这就很鸡肋(可能它有什么更好的想法,我没能理解)。于是就select * from(select department_id,first_name,last_name,salary, rank()over(partition by department_id ...