Reputation: 5460
In SQL Server there are extended properties to enter a 'description' for each table.
Is there an equivalent in MYSQL? If so, can I access from PhpMyAdmin?
Upvotes: 0
Views: 64
Reputation: 4363
You can add comments for a table in phpMyAdmin, choose the table, Operations
-> Table Operations
-> Table comments
.
Related sql:
ALTER TABLE `MyTableName` COMMENT = 'My Comment'
Upvotes: 1