Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

Find the names of sailors who have reserved at least one boat

select s.name
from sailors s, reserves r
where s.id = r.sId;
 
PREVIOUS NEXT
Tagged: #Find #names #sailors #reserved #boat
ADD COMMENT
Topic
Name
9+5 =