VbzCart/docs/queries/qryRpt Pkg Trx

From Woozle Writes Code
< VbzCart‎ | docs‎ | queries
Revision as of 23:33, 1 June 2011 by imported>Woozle (tidied up but still not converted to MySQL)
Jump to navigation Jump to search

About

SQL

<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryRpt_Pkg_Trx AS SELECT

 t.ID_Order,
 tt.Code,
 t.WhenDone,
 iif(t.ID_Package IS NULL,"","pkg #"&p.Seq&": ")&t.Descr AS Descr,
 t.Amount

FROM (

 ord_trxact AS t LEFT JOIN
 ord_trx_type AS tt ON t.ID_Type=tt.ID) LEFT JOIN
 ord_pkgs AS p ON t.ID_Package=p.ID

WHERE WhenVoid IS NULL ORDER BY WhenDone, Amount>0;</mysql> <section end=sql />