Weld logo
SQL TUTORIAL • LESSON 5, Filtering

Using !, =, <, > to filter data in SQL

The example above used a very simple = to indicate the condition to be fulfilled in the WHERE statement. Some of the most used simple ways to indicate the conditions are:

  • = Equal to
  • != Not equal to
  • > Greater than
  • < Less than

These work the same way as in Excel and are simple, especially for numerical values.

Exercise 2: Find all items where the price is higher than 97

For this exercise, you’ll look at the prices of what’s being ordered in the sample e-commerce data. This is located in a table you have not used before called webshop_order_line. You can find it grouped together with the other tables you’ve worked with in the sidebar to the left.

Try to find all the columns in the table, but select only the rows where the price value is higher than 97. If you run your query, it should give a result like this:

In SQL there are often many means to an end, so you’ll usually be able to get the required result by writing different variations of the same query. A simple way to solve the exercise above would be to write a query like this:

1select
2    id
3  , order_id
4  , product
5  , quantity
6  , price
7from
8    {{raw.e_commerce_sample.webshop_order_line}}
9where
10    price > 97

Remember that the formatting of your query is completely up to you, so whether you write the commas to separate the columns you select on the same line as the column names, or the one above, is only depending on your style.

Next up

AND / OR: Filtering your data with several conditions

Go to lesson
Weld logo

Tired of scattered data? Sync data with Weld in minutes with our powerful ETL, SQL Transformations, Reverse ETL and AI Assistant, connected to 150+ apps, files and databases.

Backed by leading investors
Frontline logoCherry logoInnnovation Fund logo
Twitter LogoLinkedIn Logo
GDPR logoSOC2
© 2024 Weld. All rights reserved.