MySQL CONV() 字串 轉 數字
MySQL CONV() 字串 轉 數字
資料來源:http://maxwell-tech.blogspot.tw/2008/12/mysqlconv.html / http://ysde.blogspot.tw/2011/11/mysql.html
CONV(N,from_base,to_base)
N是要轉換的數據,from_base是原進制,to_base是目標進制。
SELECT CONV(“30”,10,10);
ANS:30
SELECT CONV(“30”,16,10);
ANS:48