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.
insert into [Table2] (field1, field2, field3, field4, field5)
select
case when types = 1 then 1 else 0 end,
case when types = 2 then 1 else 0 end,
case when types = 3 then 1 else 0 end,
case when types = 4 then 1 else 0 end,
case when types = 5 then 1 else 0 end
from [Table1]