PostgreSQL - JSON and JSONB
What will be the output of this query if
data is a jsonb column containing '{"x":10, "y":20}'?SELECT data->>'x' FROM table_name;
