Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select a.id
, a.desc + b.desc + c.desc
from yourtable a
, yourtable b
, yourtable c
where a.id = b.id
and b.id = c.id
and a.desc < b.desc
and b.desc < c.desc
order by 1