Basic Sql Flashcards

1
Q

What SQL command is used to retrieve data from a database?

A

SELECT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What clause is used to filter results in a SELECT query?

A

WHERE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you select all columns from a table named ‘users’?

A

SELECT * FROM users;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What SQL keyword is used to insert a new row into a table?

A

INSERT INTO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you insert a new row into a table named ‘users’ with columns ‘name’ and ‘age’?

A

INSERT INTO users (name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What SQL statement is used to update existing records in a table?

A

UPDATE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you update the age of a user named ‘John’ to 26 in the ‘users’ table?

A

UPDATE users SET age = 26 WHERE name = ‘John’;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What SQL command deletes records from a table?

A

DELETE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you delete a user named ‘John’ from the ‘users’ table?

A

DELETE FROM users WHERE name = ‘John’;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What SQL clause is used to sort query results?

A

ORDER BY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you sort the ‘users’ table by ‘age’ in descending order?

A

SELECT * FROM users ORDER BY age DESC;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What SQL clause groups rows that have the same values?

A

GROUP BY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What SQL function counts the number of rows in a table?

A

COUNT()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you count the number of users in the ‘users’ table?

A

SELECT COUNT(*) FROM users;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What SQL clause is used with aggregate functions to filter groups?

A

HAVING

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What SQL keyword is used to remove duplicate rows in a result set?

17
Q

How do you select unique values from the ‘city’ column in the ‘users’ table?

A

SELECT DISTINCT city FROM users;

18
Q

What SQL statement creates a new table?

A

CREATE TABLE

19
Q

How do you create a table named ‘employees’ with ‘id’ as an integer and ‘name’ as text?

A

CREATE TABLE employees (id INT, name TEXT);

20
Q

What SQL statement deletes an entire table?

A

DROP TABLE

21
Q

What SQL command is used to add a new column to an existing table?

A

ALTER TABLE

22
Q

How do you add a column named ‘email’ of type VARCHAR(255) to the ‘users’ table?

A

ALTER TABLE users ADD COLUMN email VARCHAR(255);