List of questions
Related questions
Question 84 - DA0-001 discussion
Consider the following dataset which contains information about houses that are for sale:
Which of the following string manipulation commands will combine the address and region name columns to create a full address?
full_address------------------------- 85 Turner St, Northern Metropolitan 25 Bloomburg St, Northern Metropolitan 5 Charles St, Northern Metropolitan 40 Federation La, Northern Metropolitan 55a Park St, Northern Metropolitan
A.
SELECT CONCAT(address, ' , ' , regionname) AS full_address FROM melb LIMIT 5;
B.
SELECT CONCAT(address, '-' , regionname) AS full_address FROM melb LIMIT 5;
C.
SELECT CONCAT(regionname, ' , ' , address) AS full_address FROM melb LIMIT 5
D.
SELECT CONCAT(regionname, '-' , address) AS full_address FROM melb LIMIT 5;
Your answer:
0 comments
Sorted by
Leave a comment first