当您在MySQL表中创建字段时,需要填写“注释”框。如何使用PHP访问“注释”框中的数据?
戳一戳information_schema。
information_schema
SELECT table_comment FROM information_schema.tables WHERE table_schema = 'myschema' AND table_name = 'mytable'