Content deleted Content added
related this topic to another topic i.e. Expression (programming) |
No edit summary |
||
Line 1:
A [[relational database management system]] uses [[SQL]] '''conditions''' or [[Expression (programming)]] in '''<tt>WHERE</tt>''' clauses and in '''<tt>HAVING</tt>''' clauses to '''<tt>[[select (SQL)|SELECT]]</tt>''' subsets of data.
== Examples ==
Line 5:
To '''<tt>SELECT</tt>''' one row of data from a table ''tab'' with primary key column ''pk'' set to 100 — use the condition ''pk = 100'':
SELECT * FROM tab WHERE ''pk = 100''
[[Category:SQL]]
|