Question from the PostgreSQL test

Add a unique constraint on the email column while creating the users table in PostgreSQL.

Easy

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 39 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!