2

Column_name bit in mssql

When creating table in the databricks bit data type is not supported Which data type can I use

Alex Ott
  • 80,552
  • 8
  • 87
  • 132

1 Answers1

2

Unfortunately there is no bit type on Databricks, so you either can use boolean type (doc) or maybe tinyint (doc)

Alex Ott
  • 80,552
  • 8
  • 87
  • 132