Update skills/fabric-lakehouse/references/pyspark.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Ted Vilutis
2026-02-17 10:29:54 -08:00
committed by GitHub
parent 46f49185c1
commit 15e245cf79

View File

@@ -55,7 +55,7 @@ df.write.format("delta") \
spark.sql("""
UPDATE silver_customers
SET status = 'active'
WHERE last_login > '2024-01-01'
WHERE last_login > '2024-01-01' -- Example date, adjust as needed
""")
# DELETE