December 2017
Beginner to intermediate
500 pages
12h 10m
English
The Transformation that we will create takes pairs of words as input and looks for films whose description contains both words. For example, if the words are robot and rocket, what we want is the same as the output of the following SQL statement:
SELECT title, descriptionFROM public.filmWHERE description like '%robot%' and description like '%rocket%'
This is how we do this:
Read now
Unlock full access