Chapter 20: PostgreSQL WHERE – Filter Data
Part 1: What is the WHERE Clause? The WHERE clause filters rows from a table based on specified conditions. Only rows that satisfy the condition are included in the result set. The Basic Syntax sql
|
0 1 2 3 4 5 6 7 8 |
<span class="token keyword">SELECT</span> column1<span class="token punctuation">,</span> column2<span class="token punctuation">,</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token keyword">FROM</span> table_name <span class="token keyword">WHERE</span> condition<span class="token punctuation">;</span> |
...
