Last active
December 20, 2015 19:08
-
-
Save SyNeto/6180749 to your computer and use it in GitHub Desktop.
sql migracion
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 INSERT */ | |
INSERT INTO ecos.articulos_articulo (usuario_id, titulo, contenido, estado, destacado, creado, modificado) | |
SELECT 1, title, body, 'a', 0, now(), now() FROM ecos_back.posts | |
/* REPITED ROWS in VALUE */ | |
SELECT name, COUNT(*) c FROM table GROUP BY name HAVING c > 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment