Database/SQLite

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

pcm9881 2023. 6. 14. 17:01
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