The ".databases" command shows a list of all databases open in the current connection. There will always be at least 2. The first one is "main", the original database opened. The second is "temp", the database used for temporary tables. There may be additional databases listed for data...
... Dump the database in an SQL text format If TABLE specified, only dump tables matching LIKE pattern TABLE. .echo ON|OFF Turn command echo on or off .exit Exit this program .explain ?ON|OFF? Turn output mode suitable for EXPLAIN on or off. With no args, it turns EXPLAIN on. .h...
List names and files of attached databases(列出附加到数据库的数据库和文件) .dump ?TABLE? ... Dump the database in an SQL text format(保存表到SQL格式的文件中, 没有指表名, 则保存所有. 如果要保存到磁盘上需要结合 .output 命令.) .echo ON|OFF Turn command echo on or off(打开/关闭 命令...
sqlite> .databases 列出所有表 相当于mysql的show tables命令 代码语言:javascript 复制 sqlite> .tables 退出SQLite 退出SQLite命令为.quit或.exit 代码语言:javascript 复制 sqlite> .quit 代码语言:javascript 复制 sqlite> .exit 备份与恢复 SQLite备份数据库的命令为.backup或者.save,其作用是将当前数据库备份到指...
.dbinfo ?DB?Show status information about the database .dump ?OBJECTS?以 SQL 文本格式转储数据库 .echo on|off开启或关闭 echo 命令 .eqp on|off|full|...Enable or disable automatic EXPLAIN QUERY PLAN .excelDisplay the output of next command in spreadsheet ...
.dbinfo ?DB?Show status information about the database .dump ?OBJECTS?以 SQL 文本格式转储数据库 .echo on|off开启或关闭 echo 命令 .eqp on|off|full|...Enable or disable automatic EXPLAIN QUERY PLAN .excelDisplay the output of next command in spreadsheet ...
接下来进入Terminal,如果此时直接尝试使用mysql,会提示mysql: command not found,需要先将它添加到环境变量: open -e ~/.bash_profile 1. 在打开的配置文件中添加以下目录(MySQL的安装目录): export PATH=${PATH}:/usr/local/mysql/bin 1. 关闭文件后,接下来再使其生效: ...
Show status information about the database.dump ?TABLE? ... Render all database content as SQL #以 SQL 文本格式转储数据库;如果指定了 TABLE 表,则只转储匹配 LIKE 模式的 TABLE 表。.echo on|off Turn command echo on or off #开启或关闭 echo 命令。.eqp on|off|full|... ...
sqlite3_analyzer.exe,对SQLite3数据库结构分析。 6. sqlite3命令行的命令格式: sqlite3.exe[选项] 数据库名[SQL语句/sqlite3.exe的内部命令] 二、SQLite控制台操作——交互方式 1. 进入/退出SQLite控制台交互环境: sqlite3.exe 未指定数据库名,会在内存中建立数据库,退出时自动丢失。
.dbinfo ?DB? Show status information about the database .dump ?TABLE? ... Render all database content as SQL #以 SQL 文本格式转储数据库;如果指定了 TABLE 表,则只转储匹配 LIKE 模式的 TABLE 表。 .echo on|off Turn command echo on or off #开启或关闭 echo 命令。