sql-select Flashcards
What is SQL and how is it different from languages like JavaScript?
SQL is a declarative language like HTML and CSS where we give input and receive output .. where with javascript we give it step by step instruction
How do you retrieve specific columns from a database table?
SELECT “columnName”
How do you filter rows based on some specific criteria?
WHERE “columnName” comparison “specificCriteria”
What are the benefits of formatting your SQL?
makes code easy to read
What are four comparison operators that can be used in a where clause?
equals
less than
greater than
not equal to
How do you limit the number of rows returned in a result set?
LIMIT
How do you retrieve all columns from a database table?
SELECT *
How do you control the sort order of a result set?
ORDER BY “whatever column name is” ASC/DESC