This is probably a very simple question for you, for example sql gurus, but I have never used sql before.
If the table "Person" has 3 rows: name (primary key), age and city, I know that I can get all the rows as follows:
SELECT * FROM Person;
But if the table looks like this:
Name Age City
-------------------
A 2 NY
B 4 BE
C 6 PA
What sql command do I need to use to get (for example) a second row? I know the name B.
source
share