Medium
Consider the SQL statement below for creating a table with a constraint in PostgreSQL. Which option correctly adds a unique constraint on the email column while creating the users table?
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(255)
);
Author: abdelghaniStatus: PublishedQuestion passed 223 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!
1
What does the ACID acronym stand for in the context of PostgreSQL transactions?5
What is the command to back up a database in PostgreSQL?4
Which command in PostgreSQL is used to delete a database?4
What is the mechanism in PostgreSQL that ensures the integrity of transactions and supports concurrent processing?2
Which PostgreSQL command changes the definition of a database object, like a table?2
What type of index is primarily used for full-text search in PostgreSQL?1
Grant all privileges on a database to a user in PostgreSQL