-1

If, for example, a SQL 'categorical' column measures extreme, high, medium, low or no risk, I would like to see those values as output from a SQL query. I can't find it anywhere.

Is it possible? Thankyou.

EduardoCabria
  • 29
  • 1
  • 4

1 Answers1

2
 SELECT DISTINCT categorical
 FROM YOUR_TABLE

May be you need this one?

Sergey
  • 4,719
  • 1
  • 6
  • 11