1。。。ifnull----------nullif

2.。。。分页:

limit 10 , 3 -----------------select * from (select row_number() over (order by id) rownum) nn where nn.rownum between 1 and 1+10


3.。分页 :

limit 1 , 10 ------------------ limit 10 offset 1

4.。
不能用的function

group_concat()
concat_ws()


5.。
select a,b,c from table group by a

在redshift中不行,必须b,c 都在group by 后面


6。concat()里只能有两个参数


7.拼接多个字符串 使用  ||


8.  ` 用不了

相关文章:

  • 2021-08-23
  • 2022-02-07
  • 2021-06-02
  • 2022-12-23
  • 2022-03-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-12
  • 2021-11-27
相关资源
相似解决方案