2

I don't find .show table details helpful, I would just like to see the name of every column in a kusto table

Shisui
  • 1,051
  • 1
  • 8
  • 23

3 Answers3

0

you can use the getschema operator

Yoni L.
  • 22,627
  • 2
  • 29
  • 48
0
TableName
| limit 1

You could see a 1 row sample of your table this way

Sam
  • 627
  • 2
  • 13
0

.show table [tableName] dimensions

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jul 09 '23 at 13:26