Skip to content

Overview

Jens Theisen edited this page Feb 20, 2023 · 1 revision

Quick overview of SQuiL - a SQL Server database browser that is designed around moving along relations between tables: 2-related-many-back-and-forth

Selecting indexes allows you to view data in the order of the index: 3-index-order

All indexes appear as one or more search fields. Here I seek to my own StackOverflow user account using a two-column index: 4-index-search

Small tables can also be scanned. Since we're not using indexes, a single search field already covers most searching needs. 5-scanning

To aid with working in combination with regular SQL-based tools, you can copy the WHERE-clause that gives the identity of a row: 6-copy-keys

Basic editing is also supported: 7-simple-editing

SQuiL comes as both a standalone app for Windows as well as a web-version via Docker. SQL Server is the only supported database currently. Visit squil.net for more information and the online demo.

Clone this wiki locally