본문 바로가기
Database/SQLite

[SQLite] Ubuntu 20 SQLite3 설치 및 간단한 사용법

by pcm9881 2023. 6. 14.
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 querying data from sqlite_master tables.

www.sqlitetutorial.net

 

728x90

'Database > SQLite' 카테고리의 다른 글

[SQLite] 명령어 정리  (0) 2023.10.30
[SQLite] 데이터타입  (0) 2022.12.06

댓글