AND

SQL

WHERE문 해커랭크 예제 풀이(DISTINCT, NOT LIKE)

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..

SQL

WHERE/AND/OR

특정 조건을 가지는 데이터 가져오기 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..

얆생
'AND' 태그의 글 목록