Postgresql 有条件地在查询中包含 distinct
有没有办法修改查询,例如:
select distinct col1, col2
from our_schema.our_table
where (id = '1001')
目标是轻松激活/停用独特的关键字。
显然,可以将其移至评论,例如:
select col1, col2 -- distinct
from our_schema.our_table
where (id = '1001')
在 Postgresql 中是否有任何简单的方法可以做到这一点?
我在使用 TSQL 语言的 Microsoft SSMS 中看到了“动态 SQL”。Postgresql 有这样的东西吗?或者更简单的东西?