Which search expression would yield abctestdrive?
Which search expression would yield abctestdrive?
The correct search expression to yield 'abctestdrive' is 'abc'||'test'||'drive'. Option A, using CONCAT, would separate the inputs with spaces, and option D is incorrectly formatted. Option C would not form a single concatenated string but rather a list of values.
Answer is A
no, it is not.
A. CONCAT ('abc', 'test', 'drive') This would output: "abc test drive" B. 'abc'||'test'||'drive' This would output: "abctestdrive" C. abc, test, drive This would not yield a single string, but rather a comma-separated list of three individual values. D. CONCAT ('abc''test''drive') This would output: "abc'test'drive"