Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 274 Bytes

File metadata and controls

15 lines (11 loc) · 274 Bytes

Questions Index

Ques 1. Modify the query to show data from Spain.

SELECT name, DAY(whn), confirmed,
       deaths, recovered
FROM covid
WHERE name = 'Spain'
  AND MONTH(whn) = 3
ORDER BY whn