Suppose this is a Table
Create Table Person(
PersonID varchar(8),
PersonLN varchar(16),
PersonFN varchar(16),
PersonADD varchar(64),
PersonPH varchar(16));
so there are many enrty in that table.. So how to select the lastest row entry from that table? what will be the Mysql statement?
take PersonID as a Primary key..........