Update queries.py
Browse files- queries.py +16 -5
queries.py
CHANGED
|
@@ -555,10 +555,21 @@ queries = {
|
|
| 555 |
''',
|
| 556 |
|
| 557 |
|
| 558 |
-
#
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 563 |
# Add more queries as needed
|
| 564 |
}
|
|
|
|
| 555 |
''',
|
| 556 |
|
| 557 |
|
| 558 |
+
# Query 25
|
| 559 |
+
'25. Bags in 05_net_collection without collection partner fynd ': '''
|
| 560 |
+
select
|
| 561 |
+
*
|
| 562 |
+
from
|
| 563 |
+
`fynd-db.finance_recon_tool_asia.11_seller_fees_daily`
|
| 564 |
+
where
|
| 565 |
+
bag_id in (
|
| 566 |
+
select
|
| 567 |
+
bag_id
|
| 568 |
+
from
|
| 569 |
+
`fynd-db.finance_recon_tool_asia.05_partner_collection`
|
| 570 |
+
)
|
| 571 |
+
and
|
| 572 |
+
collection_partner <> 'fynd'
|
| 573 |
+
"""
|
| 574 |
# Add more queries as needed
|
| 575 |
}
|