要选择最后一行,我们可以使用具有desc(降序)属性和Limit 1的ORDER BY子句。让我们首先创建一个表,并在insert命令的帮助下插入一些记录。
查询如下。
mysql> create table getLastRecord -> ( -> Id int, -> Name varchar(100) -> );
创建上表之后,我们将在insert命令的帮助下插入记录。
mysql> insert into getLastRecord values(1,'John'); mysql> insert into getLastRecord values(2,'Ramit'); mysql> insert into getLastRecord values(3,'Johnson'); mysql> insert into getLastRecord values(4,'Carol');
在select语句的帮助下显示所有记录。
mysql> select *from getLastRecord;
以下是输出。
+------+---------+ | Id | Name | +------+---------+ | 1 | John | | 2 | Ramit | | 3 | Johnson | | 4 | Carol | +------+---------+ 4 rows in set (0.00 sec)
我们的经纬度记录是ID 4,名称为“ Carol”。要获取最后一条记录,以下是查询。
mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
以下是输出。
+------+-------+ | Id | Name | +------+-------+ | 4 | Carol | +------+-------+ 1 row in set (0.00 sec)
上面的输出显示我们已经获取了最后一条记录,其ID为4,名称为Carol。