Hallo
i have a problem to add to string with a SQL statement.
My Table : Tablename NAMES:
| Name1 | Name2 | Name3 |
John Meyer
I search for a SQL statment that update Name3.
The statemant must add Name1 with Name2 and put the result into Name3
| Name1 | Name2 | Name3 |
John Meyer John Meyer
I have use :
update NAMES SET Name3=Name1+Nam e2
but it don't works.
Can anybody help me ?
i have a problem to add to string with a SQL statement.
My Table : Tablename NAMES:
| Name1 | Name2 | Name3 |
John Meyer
I search for a SQL statment that update Name3.
The statemant must add Name1 with Name2 and put the result into Name3
| Name1 | Name2 | Name3 |
John Meyer John Meyer
I have use :
update NAMES SET Name3=Name1+Nam e2
but it don't works.
Can anybody help me ?
Comment