PostgreSQL - Advanced Features
Given the following SQL commands, what will be the output of the last SELECT?
CREATE EXTENSION IF NOT EXISTS hstore; SELECT 'a=>1, b=>2'::hstore -> 'a' AS value_a;
