Posts by tutomso • 21 points
1 post
-
2
votes2
answers112
viewsA: How to create XML tags from the column name of a mysql database?
You can use the information schema to get the column names of your table. An example you can apply is that: SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'testes' AND…