MySQL - 2 SELECT topic.id AS topic_id, title, description, created, name, profile FROM topic LEFT JOIN author ON topic.author_id = author.id; LEFT JOIN : 왼쪽 테이블의 모든 정보를 포함하면서 오른쪽 테이블과 매칭되는 정보가 있을 경우 결합 ON : 결합 조건 지정 (topic.author_id = author.id) AS : 별칭 지정 DB 2024.03.06
MySQL - 1 데이터 베이스 생성 CREATE DATABASE mydb 테이블 생성 CREATE TABLE student_scores ( student_id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(50) NOT NULL, math_score INT, english_score INT, science_score INT, created datetime NOT NULL ); 데이터 추가 INSERT INTO table (name, math_score, english_score, science_score, created) VALUES('hoon', 90, 80, 90, NOW()) 데이터 수정 UPDATE table SET name='hoon1' WHERE id=1; 데이터 조회 SEL.. DB 2024.03.04