728x90
반응형

> 개발-IT-인터넷/> SQL 34

[해커랭크(HackerRank) SQL 풀이] - Weather Observation Station 3

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Weather Observation Station 3 HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com ID 번호가 짝수인 도시에 대해 STATION에서 CITY 이름 목록을 조회합니다. 결과를 순서대로 인쇄하되 중복된 것은 답변에서 제외합니다. STATION 테이블은 ..

[해커랭크(HackerRank) SQL 풀이] - Weather Observation Station 1

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Weather Observation Station 1 HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com STATION 테이블에서 CITY와 STATE 목록을 조회합니다. STATION 테이블에 대한 설명은 다음과 같습니다. 여기서 LAT_N은 북위, LONG_W는 서경입..

[해커랭크(HackerRank) SQL 풀이] - Japanese Cities' Names

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Japanese Cities' Names HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블 내 모든 일본 도시의 이름을 조회합니다. 일본의 국가 코드는 JPN입니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT NAME FRO..

[해커랭크(HackerRank) SQL 풀이] - Japanese Cities' Attributes

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Japanese Cities' Attributes HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블 내 모든 일본 도시의 속성을 조회합니다. 일본의 국가 코드는 JPN입니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT * F..

[해커랭크(HackerRank) SQL 풀이] - Select By ID

해커랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Select By ID HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블에 ID가 1661인 모든 칼럼을 조회합니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT * FROM CITY WHERE ID = '1661'; Oracl..

[해커랭크(HackerRank) SQL 풀이] - Select All

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Select All HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블 내의 각 행에 대해 모든 칼럼(어트리뷰트)을 조회합니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT * FROM CITY; Oracle SELECT * F..

[해커랭크(HackerRank) SQL 풀이] - Revising the Select Query II

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Revising the Select Query II HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com 인구가 12만 명이 넘는 CITY 테이블 내 모든 미국 도시에 대해 NAME 필드를 조회합니다. 미국의 국가 코드는 USA입니다. CITY 테이블은 다음과 같이 설명되어..

[해커랭크(HackerRank) SQL 풀이] - Revising the Select Query I

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Revising the Select Query I HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com 인구가 10만 명이 넘는 CITY 테이블 내 모든 미국 도시에 대해 모든 열을 조회합니다. 미국의 국가 코드는 USA입니다. CITY 테이블은 다음과 같이 설명되어 있습니..

[MSSQL] 날짜변환 CONVERT Style 날짜포맷

이전 글에서 CONVERT에 대해 알아보았다. MSSQL 데이터 타입변환, 형변환, 날짜변환 CONVERT [MSSQL] 데이터 타입변환, 형변환, 날짜변환 CONVERT 이전에 MSSQL에서 데이터 타입변환, 형변환 가능한 CAST에 대해 알아보았다. MSSQL 데이터 타입변환, 형변환 CAST 이번에는 CAST보다 더 자주 사용되고, 날짜변환 시 쉽게 사용할 수 있는 CONVERT에 대해 ji-ni.tistory.com CONVERT 함수에서 Style에 사용되는 다양한 날짜 형식에 대해 알아보자. 테스트는 GETDATE() 함수를 사용하여 진행하였다. -- 2023-09-13 15:09:32.020 SELECT GETDATE(); 날짜만 반환 --09/13/23 SELECT CONVERT(VARCH..

[MSSQL] 데이터 타입변환, 형변환, 날짜변환 CONVERT

이전에 MSSQL에서 데이터 타입변환, 형변환 가능한 CAST에 대해 알아보았다. MSSQL 데이터 타입변환, 형변환 CAST [MSSQL] 데이터 타입변환, 형변환 CAST MSSQL을 사용하다 보면 데이터 타입을 다른 형태로 변환해야 하는 경우가 생긴다. MSSQL에서 데이터 타입을 변환하는 함수로는 CONVERT, CAST가 있다. MSSQL 데이터 타입변환, 형변환, 날짜변환 CONVERT MSSQ ji-ni.tistory.com 이번에는 CAST보다 더 자주 사용되고, 날짜변환 시 쉽게 사용할 수 있는 CONVERT에 대해 알아보자. 구문 CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) 인수 expression 유효한 식 data_t..

728x90
반응형