我想將postgresql sql查詢轉換爲mysql。使用翻譯器。在mysql中使用gmt-timezone timestamp創建數據字段?
這是Postgres的查詢:
comment_date_gmt timestamp without time zone DEFAULT timezone('gmt'::text, now()) NOT NULL,
它轉化爲
comment_date_gmt timestamp DEFAULT timezone('gmt',
的無閉括號是一個跡象,一切都是不正確的。我試圖找出這個查詢應該是什麼樣子。有什麼建議麼?
你在用什麼翻譯器?聽起來像他們的論壇的問題.. – twoleggedhorse
我環顧了一下,看來你不能真正期望100%的工作postgres到MySQL轉換器。 – Himmators
@KristofferNolgen:是的,Postgres中有很多MySQL缺乏的功能......特別是,使用表達式作爲默認值,就像您在Postgres中做的那樣。 –