hi all,
i'd like to get columns remarks from a table and insert those as a row into the table. Is that possible?
So, if I had a MYTABLE of columns "A" and "B", and I have remarks for those columns in the schema, I would like to put the remarks as follows
INSERT INTO MYTABLE VALUES(<remarks for A>, <remarks for B>);
I know I can get the remarks directly from schema:
SELECT COLUMN_NAME, REMARKS
FROM INFORMATION_SCHEMA.COLUMNS
WHERE REMARKS <> '' AND TABLE_NAME = 'MYTABLE';
But, it looks, this will not help me to insert the remarks.
Any ideas?
Thank you!