79333897

Date: 2025-01-06 17:56:58
Score: 1.5
Natty:
Report link

You can query the metadata tables to get a list of columns. For example:

Oracle:

select column_name 
from all_tab_cols 
where table_name='YOUR_TABLE' 
order by column_id;

Snowflake:

select column_name 
from information_schema.columns 
where lower(table_name)='YOUR_TABLE'
order by ordinal_position;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: mgscarn