Changes between Initial Version and Version 1 of oid/WorkLog/09-02-05


Ignore:
Timestamp:
Feb 5, 2009, 5:31:28 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • oid/WorkLog/09-02-05

    v1 v1  
     1= 2009-02-05 =
     2
     3 * 原本想說要把 location1 跟 location2 裡的資料切成 lat1, lng1, lat2, lng2,做好之後才發現原來國榮已經做了 maincase_new 的整理,因此接下來就先分析一下資料。
     4{{{
     5#!sql
     6select data_type.serial as type_id, data_type.name as type, maincase_new.name, maincase_new.description,
     7       maincase_new.loc1_lon, maincase_new.loc1_lat, maincase_new.website, maincase_new.start_time
     8from data_type, maincase_new, maincase_detail
     9where maincase_detail.maincase_id = maincase_new.serial and maincase_detail.type_id = data_type.serial
     10order by type_id, loc1_lon, loc1_lat
     11}}}