From 31d429c22dac6624a5083db09f02cba3e56a5d49 Mon Sep 17 00:00:00 2001 From: gytic Date: Mon, 11 Nov 2024 21:49:10 +0100 Subject: [PATCH] added: usage information sections - execute query - open table - filter table - insert row --- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/README.md b/README.md index 7eba23d..9f0b4e4 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,46 @@ If you already have a connection set up: 2. select the right connection (press `j` and `h` for navigation) 3. connect to the DB (press `c`) +### Create table + +There is currently no way to create a table from the TUI. +However you can run the query to create the table as a SQL-Query, +inside the SQL Editor. + +### Execute SQL querys + +1. Press `` to open the built-in SQL Editor +2. Write the SQL query +3. Press `` to execute the SQL query + +> To switch back to the table-tree press `H` + +### Open/view a table + +1. Expand table-tree by pressing `e` +2. Select the table you want to view +3. Press `` to open the table + +> To switch back to the table-tree press `H` +> To switch back to the table press `L` + +### Filter rows + +0. [Open a table](#openview-a-table) +1. Press `/` to focus the filter input +2. Write a `WHERE`-clause to filter the table +3. Press to submit your filter + +> To remove the filter focuse the filter input (press `/`) and press ``. + +### Insert row + +0. [Open a table](#openview-a-table) +1. Press `1` to switch the the record tab +2. Press `o` to insert a new row +3. Fill out all columns +4. Press `` to save the changes +

(back to top)

## Support