在MySQL 中計算員工調查參與百分比
您的目標是確定不同群組中參與調查的員工百分比在MySQL 表中的“employees”和“surveys”列上。您提供了一個嘗試計算百分比的查詢,但它似乎不正確。以下是修改後的查詢,應提供所需的結果:
<code class="sql">SELECT group_name, employees, surveys, COUNT( surveys ) AS test1, concat(round(( surveys/employees * 100 ),2),'%') AS percentage FROM a_test GROUP BY employees</code>
說明:
以下是對提供的資料執行修改後的查詢的結果:
group_name | employees | surveys | test1 | percentage |
---|---|---|---|---|
Awesome Group A | 100 | 0 | 0 | 0.00% |
Awesome Group B | 200 | 190 | 190 | 95.00% |
Awesome Group C | 300 | 290 | 290 | 96.67% |
此結果顯示每個組別都曾參與調查。
以上是以下是一些適合您提供的內容的基於問題的標題: * **如何在 MySQL 中計算員工調查參與百分比? * **確定員工生存的正確查詢是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!