removing dash code for separation

This commit is contained in:
2026-07-26 10:54:41 +01:00
parent 33cbc5c6ed
commit 1ad828a2b9
9 changed files with 26 additions and 553 deletions
+5 -5
View File
@@ -5,13 +5,13 @@ print("Data loaded from Parquet file:")
print(df)
relevant_data = df.sql('''
SELECT
date,
SELECT
transaction_date,
sum(transaction_amount) as total
FROM self
GROUP BY date
ORDER BY date DESC
GROUP BY transaction_date
ORDER BY transaction_date DESC
'''
)
print("Data after SQL query:")
print(relevant_data)
print(relevant_data)