Prøver du at bestemme tabelstrukturen? Du kan forespørge på MySQL's information_schema
database direkte for feltnavnene:
select COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='student';
Prøver du at bestemme tabelstrukturen? Du kan forespørge på MySQL's information_schema
database direkte for feltnavnene:
select COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='student';