jchwebdev
jchwebdev

Reputation: 5460

Is there a way to enter descriptions for each table in mysql?

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

Answers (1)

shawn
shawn

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

Related Questions