Colonne MySQL Select où a des valeurs non int
/*find rows with non int value*/
select * from my_table where abs(user_id) =0;
Friendly Hawk
/*find rows with non int value*/
select * from my_table where abs(user_id) =0;
select * from mytable where mycolumn NOT REGEXP '^-?[0-9]+$';