小编典典

使用PHP访问MySQL字段的注释

mysql

当您在MySQL表中创建字段时,需要填写“注释”框。如何使用PHP访问“注释”框中的数据?


阅读 542

收藏
2020-05-17

共1个答案

小编典典

戳一戳information_schema

SELECT table_comment
FROM information_schema.tables
WHERE table_schema = 'myschema' AND table_name = 'mytable'
2020-05-17