Skip to content

Instantly share code, notes, and snippets.

@ikks
Created August 13, 2012 23:27
Show Gist options
  • Save ikks/3344804 to your computer and use it in GitHub Desktop.
Save ikks/3344804 to your computer and use it in GitHub Desktop.
Algunas operaciones sobre hstore
-- 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