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 Foo, min(ID) as min_ID
from tblFoo
group
by Foo
order
by case when Foo='pineapple'
then 0 else 937 end
, Foo
select Foo
from tblFoo
group
by Foo
order
by case when Foo='pineapple'
then 0 else 937 end
, Foo