MySQL 사용법2
MySQL의 CRUD C : Create // 생성 R : Read // 읽기 U : Update // 수정 D : Delete // 삭제 SQL의 INSERT 구문 cmd 실행후 mysql 접속 use opentutorials; show datatables; show tables; DESC topic; // table에 대한 속성 정보 생성 INSERT INTO topic (title, description, created, author, profile) VALUES('MySQL', 'MySQL is...', NOW(), 'egoing', 'developer'); 입력 후 불러오기 SELECT * FROM topic; 출력화면 읽기 SELECT id, title, created, author FROM ..