delimiter $$
CREATE TABLE `tbl_locate` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Locating` bit(1) DEFAULT NULL,
`MainPower` bit(1) DEFAULT NULL,
`Acc` bit(1) DEFAULT NULL,
`PowerOff` bit(1) DEFAULT NULL,
`Alarm` int(11) DEFAULT NULL,
`Speed` int(11) DEFAULT NULL,
`Direction` int(11) DEFAULT NULL,
`Latitude` double DEFAULT NULL,
`Longitude` double DEFAULT NULL,
`DateTime` datetime DEFAULT NULL,
`MainID` int(11) DEFAULT NULL,
`IOState` int(11) DEFAULT NULL,
`OilState` int(11) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1$$
SQL 字符串
SELECT * FROM tbl_locate WHERE DateTime=(SELECT MAX(`DateTime`) FROM tbl_locate WHERE MainID=1,2,3)
我想返回主 ID 为 1 或 2 或 3 的最新行的数据,
因此,需要返回 3 行最新的日期时间。
第一行是 id 1 最新日期时间
第二行是 id 2 最新日期时间
第三行是 id 3 最新日期时间
怎么做?