I am very new to SQL and i need to retreive a number of attributes from different tables but. I am searching for images and details about a user by searching for them under their name.
For example:
SELECT * FROM table1 WHERE name LIKE '%tim%' AND last_name '%smith%'
I need the following attributes in my result:
I will need all the details from table 1
account id and image from table 2
path from table 4
I have tried
SELECT table1.id table1.name table1.last_name table 2.account_id table4.path FROM table1 table 2 table4 WHERE table4.image_id = table 2.image AND table1.first_name LIKE '%tim%' AND table1.last_name LIKE '%smith%'
I am considering spilting this up into multiple queries which would solve this issue, however I am sure this can be done under a single query?, I am just not sure how to structre it, I have tried a number of times, but all queries fail in phpmyadmin
Hope someone can point me in the right direction? Below are an example of my tables, thanks in advance!
table1
------------
id (pk)
name
last_name
table 2
--------------
account id (pk)
id (fk)
image (holds image id from table 4)
table 3
-----------------
account id (fk)
image id (fk)
date
table 4
--------------------
image id (pk)
path
date