这是一个使用Google任务api提取任务列表列表并以数组形式返回其标题的函数。由于某些原因,以下内容使我变得不确定。
我不明白为什么这是不确定的,因为我正在等待返回。
SELECT t1.Primary_Key, tc.Value as City, tz.Value as Zip
FROM table1 t1 LEFT JOIN
table2 tc
ON tc.Lookup_Key = t1.City AND tc.col_name = 'City' LEFT JOIN
table2 tz
ON tc.Lookup_Key = t1.Zip AND tz.col_name = 'Zip';