Complete the code to select all columns from the feedback table.
SELECT [1] FROM feedback;The asterisk (*) selects all columns from the table.
Complete the code to insert a new feedback entry with user_id and comment.
INSERT INTO feedback (user_id, comment) VALUES ([1], 'Great app!');
String values must be enclosed in single quotes in SQL.
Fix the error in the query to get feedback comments where rating is 5.
SELECT comment FROM feedback WHERE rating [1] 5;
In SQL, the equality operator is a single equals sign (=).
Fill both blanks to update the comment for a specific feedback id.
UPDATE feedback SET comment = [1] WHERE id [2] 10;
The comment must be a string in quotes, and the WHERE clause uses '=' to match the id.
Fill all three blanks to create a table for user feedback with id, user_id, and comment.
CREATE TABLE feedback (id [1] PRIMARY KEY, user_id [2] NOT NULL, comment [3]);
id is an INTEGER primary key, user_id is a VARCHAR string, and comment is TEXT for longer feedback.
