Changes between Initial Version and Version 1 of Internal/GoodJoin


Ignore:
Timestamp:
Jun 20, 2011, 3:32:48 PM (13 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/GoodJoin

    v1 v1  
     1Gets the locations of the most recent checkin
     2{{{
     3SELECT check_in.time, locations.x,locations.y,testbeds.node_domain
     4FROM check_in
     5LEFT JOIN locations ON check_in.id = locations.id
     6LEFT JOIN testbeds ON locations.testbed_id = testbeds.id
     7WHERE 1
     8ORDER BY `check_in`.`time`  DESC
     9}}}