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
field1,
field2
INTO AcctsFeb
FROM dbo.AcctsMonthly2
where (jan is not null)
SELECT
field1 as NewField1,
field2 as NewField2
INTO AcctsFeb
FROM dbo.AcctsMonthly2
where (jan is not null)