Files
tldr/pages.zh/common/sqlite3.md

16 lines
425 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# sqlite3
> SQLite 3的命令行界面这是一个自包含的基于文件的嵌入式SQL引擎。
> 更多信息:<https://sqlite.org>。
- 使用新数据库启动交互式命令行:
`sqlite3`
- 打开一个针对现有数据库的交互式命令行:
`sqlite3 {{path/to/database.sqlite3}}`
- 针对数据库执行SQL语句然后退出
`sqlite3 {{path/to/database.sqlite3}} '{{SELECT * FROM some_table;}}'`