0
hi, can some one tell me how to merge input "fname" and "lname" and post to database to one coloum "name". thanks!
hi, can some one tell me how to merge input "fname" and "lname" and post to database to one coloum "name". thanks!
4 odpowiedzi
+ 2
alter tableName
add name
update tableName
set name =
fname + lname
hope this helps
+ 1
Can be use concate operator with white space place of + sign?
0
ok, thanks abiut it
0
this concat(fname+lname)