hi , please find the  below  

CREATE DATABASE IF NOT EXISTS sales_dbdb
MANAGED LOCATION 'abfss://unity-catalog-storage@dbstorage7wauw2kjcu3u6.dfs.core.windows.net/107512296614625'

and
create table sales_dbdb.country_wise_daily_salesale
using delta as
select country, invoice_date, round(sum(quantity*unit_price),2) as total_sales from invoice_tbl group by country, invoice_date

I want  create PARQUET format and transfer  table to BLOB-CONTAINER-GOLD