Answers for "update query with between in mysql"

SQL
0

update query with between in mysql

UPDATE va_categories SET is_showing = '1' WHERE category_id > 1076 AND category_id < 1412
Posted by: Guest on February-09-2021
0

update query with between in mysql

UPDATE va_categories SET is_showing = '1' WHERE category_id  BETWEEN 1076 AND 1412;
Posted by: Guest on February-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language