Answer the question
In order to leave comments, you need to log in
How to make a request to delete the required values?
Table HES
, column itemno
, in itemno
numbers from 1 to 600000. How to delete rows containing from 40000 to 40500 in itemno
?
Answer the question
In order to leave comments, you need to log in
"I need a query that will delete all cells ..."
If you meant delete records (not cells), then here:
DELETE FROM HES WHERE (itemno >=40000) AND (itemno <= 40500);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question