overdraft015
Programmer
is there any way that i can have multiple columns within a form using the same data so that it carries on when the space runs out?
thank you,
Michael
thank you,
Michael
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 TOP 25 Customer FROM myTable
SELECT TOP 25 Customer FROM myTable
WHERE Customer NOT IN
(SELECT Top 25 Customer FROM myTable)
SELECT TOP 25 Customer FROM myTable
WHERE Customer NOT IN
(SELECT TOP 50 Customer FROM myTable)
SELECT TOP 25 Customer FROM myTable
WHERE Customer NOT IN
(SELECT Customer FROM myFirstQuery)