👇 SQL 혼자 공부하기! SQL SELECT Statement W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com SELECT 문이란? SELECT문은 데이터베이스에서 데이터를 선택해서 조회할 때 사용합니다. SELECT문의 결과로 반환된 데이터는 result-set이라는 결과 테이블에 저장됩니다. SELECT문 문법/사용법 SELECT 원하는 컬럼 FROM 테이블 ; 의 ..