The Query.me Guide for Smooth Onboarding.
This guide comprises a quick walk-through of a basic Query.me use case:
The creation of a parameterised query with a chart, which can then be shared and scheduled.
Feel free to watch the video to the right, or scroll through this guide - the content is similar.
Navigate to Query.me/app to create an account.
Every account comes with a "Welcome Notebook" and a Demo (postgres) database.
Click here to go straight to the Welcome Notebook.
Navigate to Query.me/d to view and create database connections.
New database
to the top-leftBlocks
that can be created using the
-button or the assigned hotkeys
shown in the add-block-menu.pages
that can be created, browsed and removed in the Sidebar
.Exectuted
, Sent
,and Scheduled
in the top navigation.Viewing
and an Editing
mode. You can change mode freely unless you do not have editing permission.add-block-menu
click the +
-button or [cmd] + [dot]
.hotkeys
by typing the given key combination, followed by [spacebar]
into an empty text-block.
-buttonSELECT 1
to get started.
-button let's you paste a pre-written query.
-button let's you preview a table.Try running the following code:
SELECT
date_trunc('month', orderdate) as day,
region,
sum(profit) as profit
FROM demo_data.store_orders
group by 1,2
-button on the sql block is quickest to create a chart.String
, Number
, Boolean
, or Date
.{{parameter}}