C
Cylvia via AccessMonster.com
I have the following query to delete the top 65500 records from a table
tbl_CRS
DELETE * From tbl_CRS
SELECT TOP 65500
FROM tbl_CRS
ORDER BY Name;
, but it doesn't work. It give me syntax error in the FROM statement. Can
anyone tell me why?
Thanks Much!!
Cyl
tbl_CRS
DELETE * From tbl_CRS
SELECT TOP 65500
FROM tbl_CRS
ORDER BY Name;
, but it doesn't work. It give me syntax error in the FROM statement. Can
anyone tell me why?
Thanks Much!!
Cyl