Need to know what SQL clause can categorize rows according to a row content?
I want to display a set of rows according to a culumn x content...
| SitePoint Sponsor |
Need to know what SQL clause can categorize rows according to a row content?
I want to display a set of rows according to a culumn x content...


if this isn't what you were looking for, could you be a bit more specific please?Code:SELECT column1, column2, ... FROM daTable WHERE columnx = 'foo'![]()
That's what exactly I am looking for...
how would formulate the same question I asked for but in others terms where is more compatible or Standard for others to understand?


i think the terminology you want is called filtering
you want to return a set of rows based on a filter of a certain column value
Bookmarks