mysql - Joining name in SQl -


i new sql , tasked joining first name , last name of actors in mysql.

select first_name ||''|| last_name name actor order actor_id; 

i did not working. string of zeros. like

0 0 0 0 0 0 0 0 0 

if me solve problem. wonderful.

try use concat function

select concat(first_name, last_name) name actor order actor_id; 

further details here


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -