Mysql
 sql >> Database >  >> RDS >> Mysql

visualizzazione dei valori mysql enum in php

Se hai un campo enum, MySQL restituirà valori di stringa per esso e puoi impostare anche valori interi e stringhe. Semplicemente facendo questo:

mysql_query("select name from tablename");

ti darà etichette complete come small o medium o large

E allo stesso modo puoi aggiornarli anche usando etichette complete come questa:

mysql_query("insert into tablename (name) values ('small')");

o valori numerici come questo:

mysql_query("update tablename set name = 2");