I'm trying to get the table structure including the field descriptions.
There are several examples of how to do this but how do I get the field description included in the information schema ?
Any help would be appreciated
There are several examples of how to do this but how do I get the field description included in the information schema ?
Code:
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'MyTable'
ORDER BY ORDINAL_POSITION
Any help would be appreciated