SELECT
c.colid AS column_number,
c.name AS column_name,
t.name AS column_type,
c.length AS length,
c.prec AS precision,
c.scale AS scale
FROM syscolumns c
JOIN systypes t
ON c.usertype = t.usertype
JOIN sysobjects o
ON c.id = o.id
WHERE o.name = 'your_table_name'
ORDER BY c.colid;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)