Created
July 31, 2018 08:54
-
-
Save IftekherSunny/c2102d17a4e79f987195beae523a5538 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE broadcast_queues_temp | |
LIKE broadcast_queues; | |
INSERT INTO broadcast_queues_temp | |
SELECT * | |
FROM broadcast_queues | |
GROUP BY subscriber_id; | |
DROP TABLE broadcast_queues; | |
ALTER TABLE broadcast_queues_temp | |
RENAME TO broadcast_queues; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment