Quiz: Databases and Deno
Quiz yourself on how to use databases with Deno.
We'll cover the following...
1
Which statement do we use to create a new table with PostgreSQL?
A)
INSERT TABLE Users(
id SERIAL PRIMARY KEY,
firstName varchar(255),
lastName varchar(255)
);
B)
CREATE TABLE Users(
id SERIAL PRIMARY KEY,
firstName varchar(255),
lastName varchar(255)
);
C)
ADD TABLE Users(
id SERIAL PRIMARY KEY,
firstName varchar(255),
lastName varchar(255)
);
Question 1 of 50 attempted
Access this course and 1400+ top-rated courses and projects.