79727520

Date: 2025-08-06 15:42:59
Score: 0.5
Natty:
Report link

If you're using Unity Catalog, you can now query columns easily with:

SELECT table_schema, table_name, ordinal_position, column_name, data_type, full_data_type
FROM main.information_schema.columns
ORDER BY 1,2,3;

Where main is the name of your catalog. You can read more about it here.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Igor-S