I have a table that I am trying to update a range records, I have tried multiple methods with no luck. Here is the scripts I\'ve tried.
UPDATE va_categories
Try this
UPDATE va_categories SET is_showing = '1' WHERE category_id BETWEEN 1076 AND 1412;
or
UPDATE va_categories SET is_showing = '1' WHERE category_id > 1076 AND category_id < 1412