Last active
April 4, 2019 01:55
-
-
Save dgershman/a64e1b021da909f48c28fb4be94cea5c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
select concat("insert into conference_participants (callsid, conferencesid, friendlyname, timestamp) values ('", callsid, "','", conferencesid, "','", friendlyname, "','", timestamp, "')") from conference_participants; | |
select concat("insert into config (service_body_id, data_type, data, parent_id) values (", service_body_id, ",'", data_type, "','", data, "',", IFNULL(parent_id, "NULL"), ")") from config; | |
select concat("insert into metrics (timestamp, data) values ('", timestamp, "','", data, "')") from metrics; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment