취준 note 2023/db
관계를 맺자! 조인
① 테 이블에 있는 데 이 터들을 걸러 내는 필터 역힐을 하는 일반조건 ② 조인 시에 테이블들을 연결하는 조인조건 SELECT * FROM employees WHERE employee_id = 101; S E L E C T FROM WHERE first name l l 1ast name full name e mp 1 • y e e S empI•yee id = 101; S E L E C T FROM WHERE S E L E C T FROM WHERE S E L E C T FROM WHERE first name l l 1ast name AS full name e mp 1 O Ve e S empl•vee id = 101F 낙 AS 별칭 이름 Eirst name l l 1ast name "full name" 다..
postgres실습,docker
C:\Users\User>createdb -U postgres function_example 암호: C:\Users\User>ipconfig psql -U postgres -d function_example -f C:/Users/User/Desktop/postgres/function_example.dump created -Upostgres cmd로 postgres암호설정 postgres=# \c function_example 접속정보: 데이터베이스="function_example", 사용자="postgres". function_example=# drop table develop_book; DROP TABLE function_example=# \dt 릴레이션(relation) 목록 스키마 | 이름 | 종류..