Use Argument Indexes
select id, updated_at from posts order by updated_at;select id, updated_at from posts order by 2;select type, count(*) from transaction group by 1 order by 2 desc;Last updated
select id, updated_at from posts order by updated_at;select id, updated_at from posts order by 2;select type, count(*) from transaction group by 1 order by 2 desc;Last updated