Guest User

Untitled

a guest
Sep 29th, 2023
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. SET @options_table := (SELECT TABLE_NAME FROM information_schema.`TABLES` WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME like "%_options");
  2. SET @final_query = CONCAT('UPDATE ',@options_table, ' SET option_value = "" WHERE option_name = "td_live_css_local_storage"');
  3. PREPARE stmt1 FROM @final_query;
  4. EXECUTE stmt1;
  5. DEALLOCATE PREPARE stmt1;
Advertisement
Add Comment
Please, Sign In to add comment