Filter Rows Using WHERE Statement

MySQL CASE

In SELECT statement you can filter with condition to get actual result. Using WHERE clause you will get the data from the table that you exactly need.

Here is sample sql for Filter Rows:

SELECT name, address FROM users WHERE state = 'AL';

Leave a Reply

Your email address will not be published. Required fields are marked *