私はこれをもたらすmysqlテーブルで選択しています:
topic user weight
"hello" 324 3
"hello" 21 1
"second thread" 34 1
"second thread" 21 1
"second thread" 32 1
"second thread" 3 3
"hello" 23 1
簡単にするために、最初の列「トピック」を数字に変えたいと思います。次のように、1 つの列だけを数値に変換することは可能ですか。
topic user weight
1 324 3
1 21 1
2 34 1
2 21 1
2 32 1
2 3 3
1 23 1
助けてくれて本当にありがとうございます!
よろしく、シモーネ