What can you do with PostgreSQL and JSON?
PostgreSQL 9.2 added a nativeJSONdata type,but didn’t add much else. You’ve got three options if you actually want to do something with it:
I wanted to use this stuffnow,and I opted to go with option 3. I wrote a blog post which should help you get going if you want to go this route:adding json_enhancements to PostgreSQL 9.2. So let’s assume you’re on either 9.3,or 9.2 withjson_enhancements. What can you do?Lots!All the new JSON operators and functions are in the9.3 documentation,so I’m going to run through some of the more fun things you can do along with a real-world use case. Get startedCreate a database to play about in: createdb json_test psql json_test With some sample data: CREATE TABLE books ( id integer,data json ); INSERT INTO books VALUES (1,'{ "name": "Book the First","author": { "first_name": "Bob","last_name": "White" } }'); INSERT INTO books VALUES (2,'{ "name": "Book the Second","author": { "first_name": "Charles","last_name": "Xavier" } }'); INSERT INTO books VALUES (3,'{ "name": "Book the Third","author": { "first_name": "Jim","last_name": "Brown" } }'); SelectingYou can use the JSON operators to pull values out of JSON columns: SELECT id,data->>'name' AS name FROM books; id | name ----+----------------- 1 | Book the First 2 | Book the Second 3 | Book the Third The->operator returns the original JSON type (which might be an object),whereas->>returns text. You can use the->to return a nested object and thus chain the operators: SELECT id,data->'author'->>'first_name' as author_first_name FROM books; id | author_first_name ----+------------------- 1 | Bob 2 | Charles 3 | Jim How cool is that? FilteringOf course,you can also select rows based on a value inside your JSON: SELECT * FROM books WHERE data->>'name' = 'Book the First'; id | data ----+--------------------------------------------------------------------------------------- 1 | '{ "name": "Book the First","last_name": "White" } }' You can also find rows based on the value of a nested JSON object: SELECT * FROM books WHERE data->'author'->>'first_name' = 'Charles'; id | data ----+--------------------------------------------------------------------------------------------- 2 | '{ "name": "Book the Second","last_name": "Xavier" } }' IndexingYou can add indexes on any of these using PostgreSQL’sexpression indexes,which means you can even add unique constraints based on your nested JSON data: CREATE UNIQUE INDEX books_author_first_name ON books ((data->'author'->>'first_name')); INSERT INTO books VALUES (4,'{ "name": "Book the Fourth","last_name": "Davis" } }'); ERROR: duplicate key value violates unique constraint "books_author_first_name" DETAIL: Key (((data -> 'author'::text) ->> 'first_name'::text))=(Charles) already exists. Expression indexes are somewhat expensive to create,but once in place will make querying on any JSON property very fast. A real world exampleOK,let’s give this a go with a real life use case. Let’s say we’re tracking analytics,so we have aneventstable: CREATE TABLE events ( name varchar(200),visitor_id varchar(200),properties json,browser json ); We’re going to store events in this table,like pageviews. Each event has properties,which could be anything (e.g. current page) and also sends information about the browser (like OS,screen resolution,etc). Both of these are completely free form and could change over time (as we think of extra stuff to track). Let’s insert a couple of events: INSERT INTO events VALUES ( 'pageview','1','{ "page": "/" }','{ "name": "Chrome","os": "Mac","resolution": { "x": 1440,"y": 900 } }' ); INSERT INTO events VALUES ( 'pageview','2','{ "name": "Firefox","os": "Windows","resolution": { "x": 1920,"y": 1200 } }' ); INSERT INTO events VALUES ( 'pageview','{ "page": "/account" }',"y": 900 } }' ); INSERT INTO events VALUES ( 'purchase','5','{ "amount": 10 }',"resolution": { "x": 1024,"y": 768 } }' ); INSERT INTO events VALUES ( 'purchase','15','{ "amount": 200 }',"resolution": { "x": 1280,"y": 800 } }' ); INSERT INTO events VALUES ( 'purchase','{ "amount": 500 }',"y": 800 } }' ); Hm,this is starting to remind me of MongoDB! Collect some statsUsing the JSON operators,combined with traditional PostgreSQLaggregate functions,we can pull out whatever we want. You have the full might of an RDBMS at your disposal. Browser usage?
SELECT browser->>'name' AS browser,count(browser) FROM events GROUP BY browser->>'name'; browser | count ---------+------- Firefox | 3 Chrome | 2 Total revenue per visitor?
SELECT visitor_id,SUM(CAST(properties->>'amount' AS integer)) AS total FROM events WHERE CAST(properties->>'amount' AS integer) > 0 GROUP BY visitor_id; visitor_id | total ------------+------- 5 | 10 15 | 700 Average screen resolution?
SELECT AVG(CAST(browser->'resolution'->>'x' AS integer)) AS width,AVG(CAST(browser->'resolution'->>'y' AS integer)) AS height FROM events; width | height -----------------------+---------------------- 1397.3333333333333333 | 894.6666666666666667 You’ve probably got the idea,so I’ll leave it here. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |