Query
SELECT Name, Title FROM Contact WHERE Title LIKE 'CF%'
'%OF'
=> Ending with OF:
SELECT Name, Title FROM Contact WHERE Title LIKE '%OF'
Query Results
'%FO%' => Contains FO:
'C%%F' => Starting with C and ending with F
Video
Video does not exists.