How would I go about fetching the row number (or index) of a particular row that matches a condition?
Example:
If I wanted to select:
SELECT * FROM tblAccount WHERE [Account ID] = 2343 LIMIT 0, 1
How would I get the row number of that selected row?
Thanks.