There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
I’m getting an error in the last step of this exercise and I can’t figure out why. The previous step had me copy and paste all the “INSERT” statements into this code and it originally included one more insert statement that I have since removed that was meant to purposely throw an error. Any help is appreciated.
‘isbn’ is the primary key for the ‘book’ table, and ‘book_isbn’ is the foreign key that relates to it from the ‘book_details’ table.
id integer PRIMARY KEY,
book_isbn varchar(50) REFERENCES book(isbn) UNIQUE,
rating decimal,
language varchar(10),
keywords text[],
date_published date
);
SELECT
constraint_name, table_name, column_name
FROM
information_schema.key_column_usage
WHERE
table_name = 'book_details';
SELECT
constraint_name, table_name, column_name
FROM
information_schema.key_column_usage
WHERE
table_name = 'book';
INSERT INTO book VALUES (
'Learn PostgreSQL',
'123457890',
100,
2.99,
'Great course',
'Codecademy'
);
INSERT INTO book_details VALUES (
1,
'123457890',
3.95,
'English',
'{sql, postgresql, database}',
'2020-05-20'
);
SELECT
book.title,
book.price,
book_details.language,
book_details.rating
FROM
book, book_details
WHERE
book.isbn = book_details.book_isbn;
I just now realized there is a “Show Solution” button. lol
It appears that the problem came from me deleting the aforementioned code, and also from me adding the code to check the primary key of the ‘book’ table.
Why does the ‘license’ table have both columns ‘id’ (which is the primary key) and ‘license id’ ? Can’t the license id serve as the id in this table as it is unique and to avoid a redundant column?
I wanted to ask why a JOIN query is being used in the solution when we have already ‘joined’ both tables together in effect when creating the tables and linking via REFERENCE & UNIQUE?