我有兩個表問題和question_paper。在question_paper我有一個名爲question_ids .in question_ids-(文本類型)的列,我存儲問題表的ID像2,5,23,45,6,9等。現在的問題是,當我試圖取數據使用如何更改mysql查詢中的數據類型?
select * from question where id IN (select question_ids from question where id=1)
它將question_ids作爲字符串類型傳遞,因此它只返回第一個匹配的id的值。因此,我需要將此查詢結果更改爲數字類型,這在mysql中是可能的,還是有任何函數使用我可以更改臨時類型。先謝謝了。
您是否嘗試過CAST()或CONVERT()?只是谷歌「mysql鑄」 – yahermann
使用CAST()函數 –
試試這個[SO帖子](http://stackoverflow.com/questions/17942508/sql-split-values-to-multiple-rows)首先拆分你的question_id字符串到行中,然後將其用於您的子查詢。我認爲這應該工作。 – vmachan