1.3.2 SQL selecting data (single table) Flashcards

1
Q

what are the uses of SQL?

A

select data single table)
Select data (multiple tables)
Insert data
Delete records
Delete tables

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

what does the SELECT command do?

A

Retrieves data from a database table.

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

what does the FROM command do?

A

Specifies the tables to retrieve data from.

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

what does the WHERE command do?

A

Filters the data based on specific condition.

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

what does the LIKE command do?

A

Filter the data based on a specific pattern.
SELECT * FROM users
WHERE name LIKE ‘J%’;
(retrieves users whose names start with ‘J’)

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

what does the AND command do?

A

combines multiple conditions in the where command.
SELECT * FROM users
WHERE age > 18 AND city = ‘New York’;
(retrieves users older than 18 and from New York)

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

what does the OR command do?

A

retrieve data when at least one condition is met/true.
SELECT * FROM users
WHERE age < 18 OR city = ‘New York’;
(retrieves users younger than 18 or from New York)

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

what does the command WILDCARD do?

A

’ and ‘%’ symbols are used for searching and matching data
’ used to select all columns in a table
‘%’ used as a wildcard character in the LIKE operator.

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