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.
create table BlahCount(mycolumn_NOTFIELD int)
insert BlahCount values(401)
insert BlahCount values(580)
insert BlahCount values(633)
insert BlahCount values(785)
insert BlahCount values(801)
select * ,(select count(*) from BlahCount b2 where b2.mycolumn_NOTFIELD <= b1.mycolumn_NOTFIELD) as RowNo
from BlahCount b1
myfield1
401
785
580
801
633