Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLINSERT UPDATE DELETESingle-choice MCQ

A table `users(id SERIAL PRIMARY KEY, name TEXT, role TEXT DEFAULT 'member')` is inserted into as below. What is the `role` of the new row?

INSERT INTO users (name) VALUES ('Mia');