To describe table structure...
exec sp_columns mytable
exec sp_help 'myschema.mytable'
SELECT *
FROM information_schema.columns
WHERE table_name = 'mytable'
ORDER BY ordinal_position
If you have the First Responder kit installed...
exec sp_blitzindex @tablename='mytable'
TODO
TODO
ALTER TABLE mytable
DROP COLUMN mycolumn;
Announced at MS Build 2021. Based on Blockchain
Append only Ledger Tables
Updateable Ledger Tables