How to update a range of records in Mysql

后端 未结 3 960
一向
一向 2020-12-29 16:02

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          


        
3条回答
  •  没有蜡笔的小新
    2020-12-29 16:25

    Get rid of the IS in IS BETWEEN. Or use WHERE category_id > 1076 AND category_id < 1412:

    UPDATE va_categories SET is_showing = '1' WHERE category_id BETWEEN 1076 AND 1412;
    UPDATE va_categories SET is_showing = '1' WHERE category_id > 1076 AND category_id < 1412;
    

提交回复
热议问题