Changes between Initial Version and Version 1 of Internal/GoodJoin
- Timestamp:
- Jun 20, 2011, 3:32:48 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/GoodJoin
v1 v1 1 Gets the locations of the most recent checkin 2 {{{ 3 SELECT check_in.time, locations.x,locations.y,testbeds.node_domain 4 FROM check_in 5 LEFT JOIN locations ON check_in.id = locations.id 6 LEFT JOIN testbeds ON locations.testbed_id = testbeds.id 7 WHERE 1 8 ORDER BY `check_in`.`time` DESC 9 }}}