PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

पूर्णांकों का विभाजन 0 . लौटाता है

विभाजित करने से पहले आपको कास्ट करना चाहिए, लेकिन तालिका से कुल गिनती प्राप्त करने के लिए आप एक सबक्वायरी भी खो रहे थे। ये रहा नमूना।

select 
  random_int,
  count(random_int) as Count,
  cast(count(random_int) as decimal(7,2)) / cast((select count(random_int) from test) as decimal(7,2)) as Percent
from test
group by random_int
order by random_int;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्या PostgreSQL इंडेक्स सरणी कॉलम कर सकता है?

  2. एक सशर्त INSERT . से आईडी प्राप्त करें

  3. PostgreSQL डेटाबेस बनाएँ

  4. चरण दर चरण postgres_fdw

  5. PhpMyAdmin के समान PostgreSQL विज़ुअल इंटरफ़ेस?