asked
Introduction to Database Based on MSSQL Server 2016: From Basics to Practical Application Part.2
ORDER BY multiple sorts and IN EXISTS operator
Written on
·
230
0
IN 연산자 사용할 때 왜 굳이 ID로 조회를 하나요?
SELECT * FROM DBO.TBL_MOVIE
WHERE RELEASE IN (2006, 2019);
이렇게만 해도 되지 않나요...?
Answer