Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2025 03:25 AM
table_name = f"project.bronze.{file_name}"
spark.sql(
f"""
CREATE TABLE IF NOT EXISTS {table_name}
USING DELTA
"""
)
what am I getting wrong?