我想英尺和英寸轉換爲釐米格式MySQL的高度轉換格式釐米
格式在我的數據庫是:
4'6" (4英尺6英寸)
公式轉換成釐米
4*30.48 = 121.92 (convert feet to centimeters = multiply by 30.48)
6*2.54 = 15.24 (convert inches to centimeters = multiply by 2.54)
So Result = 121.92 + 15.24 = 137.16 cm
例如:
實際的表:英寸
SELECT * FROM inches
id height
1 4'6"
2 4'7"
3 5'8"
4 5'9"
我希望下面的結果釐米,當我做SQL查詢
id height
1 137.16
2 139.7
3 172.72
4 175.26
感謝提前:)
你爲什麼不先將其轉換爲英寸首先,然後乘以2.54?即'(4×12 + 6)×2.54'? – Raptor
是的,沒關係。如何查詢?請... – Asik
類似的問題:http://stackoverflow.com/questions/24837742/convert-inches-to-cm-in-text-in-mysql。簡而言之,您應該在應用程序級別執行此操作,例如通過PHP腳本。 – Raptor