create table ifxload(id integer primary key autoincrement, time varchar(10), load varchar(5));
select * from ifxload where id = (select max(id) from ifxload);
create table ifxload(id integer primary key autoincrement, time varchar(10), load varchar(5));
select * from ifxload where id = (select max(id) from ifxload);