Inner Joins
Inner Joins
I am not getting what is the syntax to write inner join ,only left join syntax is mentioned in manual?Need help
select t.name,
c.name,s.company_name,t.start_date,t.end_date,t.start_budget,t.end_budget,t.start_actual,t.end_actual,t.cost_code,t.gst from task t,project p,suppliers s,category c where t.supplier_id=s.id and p.id=t.project_id and c.id=t.category_id
This is the query i am trying to write a join for i am using latest trial version of editor
This question has accepted answers - jump to:
Answers
Editor doesn't provide an INNER JOIN but you can use LEFT JOIN and check for IS NOT NULL regarding the key you are joining. That gives you the same result.
can be written as
Just write this the Editor way with the back end library you are using (PHP or whatever you are using).
Awesome - thanks @rf1234. I've bookmarked this myself.
Allan
Thanks a lot .It is working now