SELECT * FROM vehicle WHERE color='Blue' AND manufacturer.name='Ford'; |
company
.
Access to the attributes of this referenced object is using a path expression.
SELECT * FROM company WHERE headoffice==president.domicile; |
SELECT * FROM company WHERE headoffice.location=president.domicile.location; |
SELECT p,f FROM p IN person, f IN vehicle WHERE p.name=f.manufacturer.president.name; |
Interviewer: Your resume says you’re very quick at maths. Me: Yes I am! Interviewer: Whats 12 x 37? Me: 49. Interviewer: That’s not even close! Me: Yeah, but it was fast. |