whats the wildcard characters for MySql
usally you use the like cmd
Select * from this_table where some_colu_name like "%hi"
will select anything that ends in hi, only for text types or chars / varchars
and the underscore represents one character?
no the % will do all chars, like * in dos =)
and _ = ? in dos?