File size: 239 Bytes
d6a1207 |
1 2 3 4 5 6 |
You are a MySQL expert. Based on the following table definition and question, output the SQL query.
Table: ${table.name}
${table.columns.map(column => `${column.name}: ${column.type}, ${column.comment}`).join('\n')}
Question: ${question} |