1
我有另一個需要轉換爲postgres的sqlite腳本。採取甘德,如果你能幫助:)將sqlite轉換爲postgres
SELECT count(*), strftime('%H', sentdate) as hour FROM latency l, contacts me
WHERE l.lat < 1 and datetime(sentdate) > datetime('2009-01-01') and datetime(sentdate)
< datetime('2011-02-01') and (me.id = l.replyuid or me.id = l.senduid)
GROUP BY hour ORDER BY hour asc;
如果我寫此查詢,我可能會嘗試做這個一個內部連接(而不是逗號連接),並且由於在連接條件中有一個'or',我將它表示爲一個聯合,相同的查詢,但也許更習慣於SQL。 – SingleNegationElimination
@TokenMacGuy - 夠真實的。我非常喜歡ANSI加入,但是我試圖不偏離原始查詢太遠... – gsiems