We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jsonb
CREATE TABLE books ( id int PRIMARY KEY, data jsonb );
INSERT INTO books (id, data) VALUES (1, '{ "name": "ABC", "author": "John Smith" }');
SELECT * from books; SELECT * from books WHERE id=1;
The text was updated successfully, but these errors were encountered:
be2d598
Sorry, something went wrong.
Merge pull request #154 from LucyLikeMilk/master
e9ab8a3
Fix some typos in plunit.c and plvdate.c.
pritamdamania87
No branches or pull requests
jsonb
column to hold flexible schema documents:The text was updated successfully, but these errors were encountered: