유용한 SQLite 명령 요약

1404 단어 SQLite명령
테이블 구조를 표시하려면 다음과 같이 하십시오.

sqlite> .schema [table]
모든 테이블과 보기를 가져오려면:

sqlite > .tables
지정된 테이블의 색인 목록을 가져오려면 다음과 같이 하십시오.

sqlite > .indices [table ]
데이터베이스를 SQL 파일로 내보내려면 다음과 같이 하십시오.

sqlite > .output [filename ]
sqlite > .dump
sqlite > .output stdout
SQL 파일에서 데이터베이스 가져오기:

sqlite > .read [filename ]
CSV 형식으로 출력 데이터 포맷하기

sqlite >.output [filename.csv ]
sqlite >.separator ,
sqlite > select * from test;
sqlite >.output stdout
CSV 파일에서 테이블로 데이터 가져오기

sqlite >create table newtable ( id integer primary key, value text );
sqlite >.import [filename.csv ] newtable
백업 데이터베이스:

/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql
데이터베이스 복구:

/* usage: sqlite3 [database ] < [filename ] */
sqlite3 mytable.db < backup.sql

좋은 웹페이지 즐겨찾기