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 Serial#
, min(Name) as c1
, min(Option1) as c2
, min(Option2) as c3
into temptable
from yourtable
group
by Serial#
delete from yourtable
insert into yourtable
(Serial#, Name, Option1, Option2)
select Serial#, c1, c2, c3
from temptable
drop temptable