Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの異なるクエリを 1 つの結果に分割して 10 進数、つまり 5.14 にするクエリがあります。最後にパーセント記号を追加したいと思います。したがって、結果は 5.14% です。しようとしましCONCAT()たが、エラーが発生しました。
CONCAT()
クエリの最初の部分は次のとおりです。
SELECT ((o.count_1 / s.count_2) * 100) as '% of # of Ops to # of Users Ratio'
SELECT CONCAT(((o.count_1 / s.count_2) * 100), '%') AS '% of # of Ops to # of Users Ratio'
または...
SELECT CONCAT(((o.count_1 / s.count_2) * 100), '% of # of Ops to # of Users Ratio')
'% of # of Ops to # of Users Ratio'結果の一部として、または列名としてそれを望んでいたかどうかはわかりません。
'% of # of Ops to # of Users Ratio'