불러온 값을 다시 삽입하는 쿼리문이다.
쿼리를 반복 실행할 수록 불러오는 값이 많아져 값이 배로 삽입된다.
insert into board (title, content, userName) (select title, content, userName from board);
반응형
'DB' 카테고리의 다른 글
터미널에서 MySql 사용하기 (0) | 2016.09.04 |
---|
불러온 값을 다시 삽입하는 쿼리문이다.
쿼리를 반복 실행할 수록 불러오는 값이 많아져 값이 배로 삽입된다.
insert into board (title, content, userName) (select title, content, userName from board);
터미널에서 MySql 사용하기 (0) | 2016.09.04 |
---|
MySql 서버 실행하기 -> mysql.server start (Mac)
MySql 접속하기 -> mysql -u root // -uroot 라고 붙여도 된다.
Character set 확인 -> status; 에서 4가지가 모두 utf-8로 되어있는지 확인.
DB 만들기 -> create database dbName; --> show create databases dbName; 으로 상태 확인
권한 설정
-> grant all privileges on dbName.* to userName@localhost identified by 'password123';
-> grant all privileges on dbName.* to userName@'%' identified by 'password123';
데이터 복사 넣기. (0) | 2016.09.07 |
---|