I'm kind of new to sql spelling, and I have a question about joins. Here is an example:
select bb.name from big_box bb, middle_box mb, little_box lb where lb.color = 'green' and lb.parent_box = mb and mb.parent_box = bb;
So, tell me that I am looking for the names of all the large boxes that have enclosed somewhere in them a small box, green. If I understand correctly, the above syntax is another way to get the same results that we could get using the "join" keyword.
Questions: is the selection statement above effective for the task? If not, what is the best way to do this? Is the syntax syntax operator for the join or is it really doing something else?
If you have links to any good material on this topic, I would love to read about it, but since I do not know exactly what this technique is called, I am having problems finding it.
source share