码迷,mamicode.com
首页 > 数据库 > 详细

HackerRank【SQL2】

时间:2019-07-19 19:14:21      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:ack   weight   any   The   title   esc   div   select   inpu   

The STATION table is described as follows:

技术图片

1、Weather Observation Station 1

Query a list of CITY and STATE from the STATION table.

select CITY,STATE from STATION;

2、Weather Observation Station 3

Query a list of CITY names from STATION with even ID numbers only. You may print the results in any order, but must exclude duplicates from your answer.

select distinct CITY from STATION where mod(ID,2) = 0;

 

HackerRank【SQL2】

标签:ack   weight   any   The   title   esc   div   select   inpu   

原文地址:https://www.cnblogs.com/wzs-python/p/11214943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!