Difference between revisions of "gnucash mysql invoice query"
From thelinuxwiki
(Created page with " == CLI queries for gnucash invoice data == '''get invoice guid''' mysql> SELECT guid FROM gnucash_netsolve_2013.invoices WHERE id = "2013018"; +---------------------------...") |
(→CLI queries for gnucash invoice data) |
||
(9 intermediate revisions by one user not shown) | |||
Line 3: | Line 3: | ||
'''get invoice guid''' | '''get invoice guid''' | ||
− | mysql> SELECT guid FROM | + | mysql> '''SELECT guid FROM gnucash_database.invoices WHERE id = "2013018";''' |
+----------------------------------+ | +----------------------------------+ | ||
| guid | | | guid | | ||
Line 10: | Line 10: | ||
+----------------------------------+ | +----------------------------------+ | ||
1 row in set (0.00 sec) | 1 row in set (0.00 sec) | ||
+ | |||
+ | get all entries for select columns from the invoice identified above... | ||
+ | |||
+ | mysql> '''SELECT date,description,action,quantity_num,i_price_num,i_discount_num,i_disc_type,i_taxable FROM gnucash_database.entries WHERE invoice = "f32b43b6da2b19e4e9e838d30ffc1edb";''' | ||
+ | |||
+ | +---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ | ||
+ | | date | description | action | quantity_num | i_price_num | i_discount_num | i_disc_type | i_taxable | | ||
+ | +---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ | ||
+ | | 2013-05-08 17:00:00 | update website | Hours | 500000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-10 05:00:00 | format and print financial chart | Hours | 750000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-14 17:00:00 | assist with Internet connectivity problem | Hours | 750000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-15 17:00:00 | internet access issue | Hours | 250000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-17 17:00:00 | correct mail sending error | Hours | 500000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-20 05:00:00 | assist with email virus | Hours | 1000000 | 100000000 | 65000000 | PERCENT | 1 | | ||
+ | | 2013-05-01 05:00:00 | april email and web hosting | Project | 1000000 | 19950000 | 0 | PERCENT | 1 | | ||
+ | | 2013-05-01 05:00:00 | may email and web hosting | Project | 1000000 | 19950000 | 0 | PERCENT | 1 | | ||
+ | +---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ | ||
+ | 14 rows in set (0.00 sec) | ||
+ | |||
+ | |||
+ | [[category:gnucash]] |
Latest revision as of 15:05, 24 May 2013
CLI queries for gnucash invoice data
get invoice guid
mysql> SELECT guid FROM gnucash_database.invoices WHERE id = "2013018"; +----------------------------------+ | guid | +----------------------------------+ | f32b43b6da2b19e4e9e838d30ffc1edb | +----------------------------------+ 1 row in set (0.00 sec)
get all entries for select columns from the invoice identified above...
mysql> SELECT date,description,action,quantity_num,i_price_num,i_discount_num,i_disc_type,i_taxable FROM gnucash_database.entries WHERE invoice = "f32b43b6da2b19e4e9e838d30ffc1edb";
+---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ | date | description | action | quantity_num | i_price_num | i_discount_num | i_disc_type | i_taxable | +---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ | 2013-05-08 17:00:00 | update website | Hours | 500000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-10 05:00:00 | format and print financial chart | Hours | 750000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-14 17:00:00 | assist with Internet connectivity problem | Hours | 750000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-15 17:00:00 | internet access issue | Hours | 250000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-17 17:00:00 | correct mail sending error | Hours | 500000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-20 05:00:00 | assist with email virus | Hours | 1000000 | 100000000 | 65000000 | PERCENT | 1 | | 2013-05-01 05:00:00 | april email and web hosting | Project | 1000000 | 19950000 | 0 | PERCENT | 1 | | 2013-05-01 05:00:00 | may email and web hosting | Project | 1000000 | 19950000 | 0 | PERCENT | 1 | +---------------------+---------------------------------------------+---------+--------------+-------------+----------------+-------------+-----------+ 14 rows in set (0.00 sec)