SQL WildCard

_ (underbar)

slelect * from testtable where description like '__________not%'

%

SELECT * FROM Customers
WHERE City LIKE 'ber%'; -- ber가 맨 앞으로 오는 데이터베이스를 추출한다.
SELECT * FROM Customers
WHERE City LIKE '%es%'; --es가 들어간 모든 데이터베이스를 추출한다.

Union

The UNION operator is used to combine the result-set of two or more SELECT statements.

<aside> 💡 즉, SELECT 명령어를 2개 또는 그 이상으로 나열할떄, UNION을 붙여 연결한다.

</aside>

SELECT column_name(s) FROM table1
UNION
SELECT column_name(s) FROM table2;
SELECT column_name(s) FROM table1
UNION ALL
SELECT column_name(s) FROM table2; --UNION ALL은 중복값이 있어도 쓰겠다는 것이다.