/ Published in: SQL
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
CREATE TEMP TABLE tempcourse AS SELECT * FROM bookings WHERE presentation=xxxxxx UPDATE tempcourse SET presentation=yyyyyy INSERT INTO bookings SELECT * FROM tempcourse DROP TABLE tempcourse;