[Ubuntu] Sqlite3 연결 SQLite3 설치sudo apt updatesudo apt install sqlite3SQLite3 데이터베이스에 접속sqlite3 example.db테이블 목록 확인.tables 특정 테이블의 스키마 확인.schema table_name SQL 종료.exit전체 과정 예시sqlite3 example.dbsqlite> .tablessqlite> .schema userssqlite> SELECT * FROM users;sqlite> .exit Ubuntu 2025.01.21