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 Col1, Col2
FROM TABLE
WHERE ROWNUM < 100;
declare @top int
declare @CMD varchar(1000)
set @Top = 5
set @CMD = 'select top ' + @Top + ' * from {table}'
exec @CMD