is it possible to use wildcards ind SQL commands f.eks.
SELECT FROM bla WHERE name ='P'
should select all row's from bla where name begings with p
i just search the forum spelling wildcard with W and not V, there i found out all i need to do was:
SELECT * FROM bla WHERE name LIKE \'%P%\'
The MySQL manual is a great place to find out how to use MySQL.