-
search for multiple table
i have three table (user,movie,music) which all have an colum(country) and
i want to retreive country name as same time
my query is like this but it doesn't work any idea please..
$QuerySelect="SELECT * FROM movie,music,user WHERE `country` LIKE'%$name%'";
-
-
Please place a white space after LIKE:
Before:
$QuerySelect="SELECT * FROM movie,music,user WHERE `country` LIKE'%$name%'";
After:
$QuerySelect="SELECT * FROM movie,music,user WHERE `country` LIKE '%$name%'";
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks