skip to Main Content

How to add percentages to an output – Postgresql

I would like to add a relative percentage to an SQL output Here is the code: SELECT customer_status.status AS "Status of Customer", COUNT (customer_bio), FROM customer_status JOIN customer_bio ON customer_status.status_id=customer_bio.status_id GROUP BY status Here is the output Status Number Switched…

VIEW QUESTION
Back To Top
Search