2011-04-21 67 views

回答

0

不知道你想什麼來實現的,但這應該工作:

SELECT *,(row1/row2/row3/row4) as order111 
FROM `ad` 
ORDER BY (row1/row2/row3/row4) ASC 
0

你嘗試了嗎?

SELECT * 
    , (row1/row2/row3/row4) AS order111 
FROM ad 
ORDER BY order111 ASC 

在MySQL中是可以接受的。

相關問題