Multiple choice technology databases Retrieving data end with "abc" which wildcard use with like keyword? abc% %abc_ %abc %abc% Reveal answer Fill a bubble to check yourself C Correct answer Explanation To match strings ending with 'abc', use '%abc' where % matches any characters (including none) before abc, and abc is the literal ending. 'abc%' would match strings starting with abc, while '%abc_' requires at least one character after abc.