sql >> Database teknologi >  >> RDS >> Mysql

skal returnere to sæt data med to forskellige where-klausuler

SELECT budget_id, 
       SUM(IF(type = 'allocation', points, 0)) AS allocated,
       SUM(IF(type = 'issue', points, 0)) AS issued
FROM transactions
GROUP BY budget_id


  1. Oracle Live SQL

  2. Hvordan opsætter man en linket server til en Oracle-database på SQL 2000/2005?

  3. Overfør data fra en database til en anden database

  4. Hvad er @@MAX_PRECISION i SQL Server?