Quick Start
Quick Start:
- Launch logQL by double clicking “logQL.jar”.
- Locate the Sample Dataset(Help > Quick Start).
- Copy using Ctrl-C and paste it in Excel Ctrl-V.
- Save this as account.xls (any folder)
- Open the file in logQL:
- From the menu, select File > Open > Excel
- Select “…” and choose the file from (4)
- Click “OK”
Now you can try some queries.
- To see how much money was spent from each account
- From the menu, select Chart > Pie
- Click check box for “out”.
- Click “OK”
- To check the day of week when the most money was spent
- Why is most money spent on Wednesday
- To check the day of week where money was spent on “Food”:
- To check the break-up for account Food on Sunday
- To see all the individual items
- To count how often you spend on cloths
SELECT account, out
To get a pie chart,
SELECT dayofweek(date), out
SELECT description, out WHERE dayofweek(date) = "Wednesday"
SELECT dayofweek(date), out WHERE account = "Food"
SELECT description, out WHERE account = "Food" and dayofweek(date) = "Sunday"
GREP date, description, out WHERE account = "Food" and dayofweek(date) = "Sunday"
SELECT count(*) WHERE tolowercase(account) = "cloths"