codecamedy의 learn SQL 2. Queries
·
프로그래밍 언어 및 기타/SQL
https://www.codecademy.com/learn/learn-sql 1. SELECT SELECT * FROM table_name; SELECT column1, column2 FROM table_name; table의 column의 값들 확인 2. As SELECT name AS 'Titles' FROM movies; 3. Distinct SELECT DISTINCT tools FROM inventory; 4. Where SELECT * FROM movies WHERE imdb_rating > 8; 5. Like SELECT * FROM movies WHERE name LIKE 'Se_en'; where에 등호 대신 like를 써서 정규식 비슷한게 가능하다. _ 엔 아무 글자나 가능. 한 글자...