I am ingesting a csv file from a mounted blob storage to delta live table and here's my initial query:
CREATE INCREMENTAL LIVE TABLE table_raw
COMMENT "Ingesting data from /mnt/foo"
TBLPROPERTIES ("quality" = "bronze")
AS
SELECT * FROM cloud_files("/mnt/foo/", "csv")
I need/want to transform its column names (e.g. remove punctuations, trim whitespaces, etc.). How should I approach it?