I want to write a query that will replace the contents of a column with 1 thru 162 until it replaces them all.
I have something like this:
UPDATE Craft_temp
SET craftID = id
WHERE id < 163
This replaces the first 162 items ... now I need to do the same thing 6 more times for items 163-324 and 325-487 etc ...
Dave
I have something like this:
UPDATE Craft_temp
SET craftID = id
WHERE id < 163
This replaces the first 162 items ... now I need to do the same thing 6 more times for items 163-324 and 325-487 etc ...
Dave