Access MySQL field's Comments with PHP -
When you are creating a field in a MySQL table, there is a 'Comments' box to fill. How can I get the data in the 'Comments' box in PHP? Press around info_schema
information_schema
Select table_comment from theslsechema_schema.tables WHERE table_schema = 'myschema' and table_name = 'mytable'
Comments
Post a Comment