I want to fetch the data from Facebook user table using wild cards. But, I guess current FQL is not supporting the wildcards, or I'm missing something.
Also, it gives an error for LIKE as well.
currently, I'm executing it as follow
SELECT uid, username,first_name,last_name FROM user WHERE first_name LIKE '%ab%' order by first_name LIMIT 0,20;
I tried *, ?, _ etc.
Still, i couldn't get it yet.
Any suggestions?