-1

I'm looking to add a column with a default value in superset.

All rows will be filled with the value "ABC".

Are there anyone can help me?

TylerH
  • 20,799
  • 66
  • 75
  • 101

1 Answers1

0

Just use single '.

SELECT *,
       'ABC' as "new_column"
FROM BDD
TylerH
  • 20,799
  • 66
  • 75
  • 101