Click to See Complete Forum and Search --> : Wrong query?


Andrew R.
June 13th, 2001, 03:16 PM
This query works fine with MS Access db, but gives me error with SQL Server 7.
'
"DELETE * FROM tbMyTable"
'
I try to delete all records from the table.
Why it doesn't work with SQL Server?

nilch
June 13th, 2001, 03:22 PM
In Sql Server just give
"Delete from <tablename>"
instead of "delete * ...."

I guess that is the difference.