CODING TEST/SQL : HackerRank
[MySQL] Select All
주 녕
2021. 3. 27. 02:59
반응형
SQL > Basic Select > Select All
Problem
Query all columns (attributes) for every row in the CITY table.
The CITY table is described as follows:
My Answer
SELECT *
FROM CITY
반응형