From: Ben T. <bt...@gm...> - 2010-12-23 03:18:57
|
What is the most expedient way to do the following? -- serial = Path.selectBy().max('serial') return Path.getOne(serial=serial) --- I would like some SQL like this: -- select * from path where serial = (select max(serial) from path); -- Thanks. |