Create hstore From Two Arrays
> select hstore(array['one','two','three'], array['1','2','3']);
hstore
--------------------------------------
"one"=>"1", "two"=>"2", "three"=>"3"> select hstore(array['one','two','three'], array['1','2']);
ERROR: arrays must have same boundsLast updated