* ProbelmWrite an SQL query to find for each month and country, the number of transactions and their total amount, the number of approved transactions and their total amount.Return the result table in any order. * Solution# Write your MySQL query statement below Select DATE_FORMAT(trans_date, '%Y-%m') AS month, country, COUNT(*) AS trans_count, sum(state='appr..