Created
August 13, 2012 23:27
-
-
Save ikks/3344804 to your computer and use it in GitHub Desktop.
Algunas operaciones sobre hstore
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
-- Obtener las llaves como arreglo | |
SELECT nombre, akeys(atributos) FROM producto; | |
-- Saber si un producto tiene cierta característica | |
SELECT nombre, atributos -> talla FROM producto WHERE atributos ? 'talla'; | |
-- Obtener el conjunto de características y sus valores para un producto | |
SELECT each(atributos) FROM producto WHERE name='pizza'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment