UPDATE文でLIMIT使いたくなったのですが、PostgreSQLではそのまま使うとエラーになります。


update test_table
set col1 = true
where id in (select id 
             from test_table
             where id > 0 order by id limit 2)
             ;

という感じにすればLIMITが使えちゃいます。