Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

WHERE keyword SQL

-- The WHERE keyword allows you to filter based on both text and numeric values in a table. 

-- There are a few different comparison operators you can use:
-- = equal
-- <> not equal
-- < less than
-- > greater than
-- <= less than or equal to
-- >= greater than or equal to

SELECT example_column
FROM example_table
WHERE example_column = 'example_value';
Source by campus.datacamp.com #
 
PREVIOUS NEXT
Tagged: #WHERE #keyword #SQL
ADD COMMENT
Topic
Name
6+2 =