1. https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com Q: Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA. The CITY table is de..
1. https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true Revising the Select Query I | HackerRank Query the data for all American cities with populations larger than 100,000. www.hackerrank.com Q: Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA. The CITY table is described as f..
LIKE 활용, 데이터 속 문자열의 패턴 찾기 - LIKE 명령어 뒤에 문자열 조건 써주기 - %기호는 아무 문자나 들어가도 상관없다는 뜻이다, '와일드카드'라고도 불림 ex) b% : b라는 문자로 시작하는 모든 데이터 검색 %b : b라는 문자로 끝나는 모든 데이터 검색 %b% : b라는 문자가 속해있는 모든 데이터 검색 SELECT * FROM Customers WHERE country LIKE '%r' -- 또는 SELECT * FROM Customers WHERE country LIKE 'r%' -- 또는 SELECT * FROM Customers WHERE country LIKE '%r%' - 만약 찾고 싶은 키워드가 명확하다면. 즉, 패턴을 가지고 데이터를 불러오고 싶은게 아니라면 LIKE ..
특정 조건을 가지는 데이터 가져오기 SELECT * FROM 테이블명 WHERE 칼럼명 = '데이터값' -- 예를 들어 SELECT * FROM Customers WHERE Country = 'Germany' 비교연산자 = 같다 다르다 >= 크거나 같다 크다 < 작다 SELECT * FROM Customers WHERE CustomerID < 50 또는 SELECT * FROM Customers WHERE CustomerName < 'B' -- 알파벳 순서에 따라 문자 'B' 이전에 오는 데이터들만 검색하게됨 논리연산자 AND: 그리고, 조건을 결합하고 싶을 때 SELECT * 또는 칼럼명 FROM 테이블명 WHERE 조건1 AND 조건2 AND... -- 예를 들어 SELECT * FROM Custom..