Database/SQLite3 [SQLite] 명령어 정리 데이터베이스 파일 위치 sqlite> .database 테이블 목록 sqlite> .tables 테이블 스키마 sqlite> .schema 출력 포맷 변경 sqlite> .mode list sqlite> .mode table sqlite> .mode column sqlite> .mode line ... 종료 sqlite> .exit 나가기 sqlite> .quit 명령어 설명 sqlite> .help mode 2023. 10. 30. [SQLite] Ubuntu 20 SQLite3 설치 및 간단한 사용법 sudo apt-get update sudo apt-get sqlite3 결과 Show Tables 전체 테이블을 보는 명령어입니다. .tables SELECT 다른 SQL문과 동일합니다. SELECT * FROM Exit SQLite3 터미널 종료 명령어입니다. .exit 참조 [SQLite Tutorial]: https://www.sqlitetutorial.net/sqlite-show-tables/ SQLite Show Tables: Listing All Tables in a Database In this tutorial, you will learn various ways to show tables from an SQLite database by using sqlite command or by que.. 2023. 6. 14. [SQLite] 데이터타입 1. NULL NULL 값 2. INTEGER 부호 있는 정수 3. REAL 8byte로 소수점 값 4. TEXT 텍스트 문자열 5. BLOB 입력된 그대로 저장하는 데이터 https://www.sqlite.org/datatype3.html Datatypes In SQLite 1. Datatypes In SQLite Most SQL database engines (every SQL database engine other than SQLite, as far as we know) uses static, rigid typing. With static typing, the datatype of a value is determined by its container - the particular column in .. 2022. 12. 6. 이전 1 다음