logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SQLite3 - Query Databases | Online Free DevTools by Hexmos

Query SQLite3 databases with this command-line interface. Execute SQL statements and manage database files efficiently. Free online tool, no registration required.

sqlite3

Interface to SQLite 3, which is a self-contained file-based embedded SQL engine. More information: https://sqlite.org/cli.html.

  • Start an interactive shell with a new database:

sqlite3

  • Open an interactive shell against an existing database:

sqlite3 {{path/to/database.sqlite3}}

  • Execute an SQL statement against a database and then exit:

sqlite3 {{path/to/database.sqlite3}} '{{SELECT * FROM some_table;}}'

See Also