i have a names table containing 4 columns
id fname mname lname
1 rain santos reyes
2 rocky blunt simon
3 greg hammer go
then i want to select a particular name from the columns fname, mname and lname using this select i did
Select * from account like 'rid%' IN(fname, mname, lname)
but it went error. im not really sure with the code.
how could I select a specific like value in the fname mname and lname columns?