↻50번부터 같은 회차 50문항을 이어서 풉니다.×50/ 50문항 자료 불러오는 중1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950편집복원 · 내용 검수 완료SQL 기본 및 활용 · 행 값 IN과 쌍 보존 · 2024년 제54회 SQLD · 50번공유문제 오류 신고☆ANSI SQL에서 `(code, amount) IN (('A',100),('B',200))`와 정확히 동치인 조건은?1(code='A' AND amount=100) OR (code='B' AND amount=200)2code IN ('A','B') AND amount IN (100,200)3code='A' OR amount=100 OR code='B' OR amount=2004code='A' AND amount=100 AND code='B' AND amount=200