1.3.2 SQL selecting data (single table) Flashcards
what are the uses of SQL?
select data single table)
Select data (multiple tables)
Insert data
Delete records
Delete tables
what does the SELECT command do?
Retrieves data from a database table.
what does the FROM command do?
Specifies the tables to retrieve data from.
what does the WHERE command do?
Filters the data based on specific condition.
what does the LIKE command do?
Filter the data based on a specific pattern.
SELECT * FROM users
WHERE name LIKE ‘J%’;
(retrieves users whose names start with ‘J’)
what does the AND command do?
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)
what does the OR command do?
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)
what does the command WILDCARD do?
‘’ 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.