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 importtable.custext, line2.custext, line3.custext into customertable
from importtable
inner join importtable line2
on importtable.id = line2.id+1
inner join importtable line3
on importtable.id = line3.id+2
where (importtable.id = 1) or (importtable.id mod 3 =0)
Select importtable.custext, line2.custext, line3.custext into customertable
from (importtable
inner join importtable line2
on importtable.id = line2.id+1)
inner join importtable line3
on importtable.id = line3.id+2
where (importtable.id = 1) or (importtable.id mod 3 =0)
LIne2, line3 so on are fields names correct.