I have the above data in myTable.data in myTable
(1) Tom
(2) Mary
(3) Jane
(4) Robert
(5) Jack
Let's look at the following code and its result.
Code:code select id, name from myTable order by id result (1) Tom (2) Mary (3) Jane (4) Robert (5) Jack
I like to retrieve only 3 records from myTable.
The following would-be code doesn't work correctly but it will show what I want.
Code:would-be code select id, name limit 3 from myTable order by id target result (1) Tom (2) Mary (3) Jane






my avatar is me as a kid in my lederhosen

Bookmarks