i have 2 table named projects and tasks
in projects table i have:
id name
---------
1 some
in tasks table i have:
id name project_id
----------------------
1 some 1
Now,how can i select * from task table and get the 'name' from projects table by 'project_id' in table tasks?
thanks