Link to home
Start Free TrialLog in
Avatar of ajaymaster143
ajaymaster143

asked on

add text in computed column formulas sql server

i want to add text in  computed column  of sql server i did this

([col1] & ' MyCustomText' & [col2)

but get error.
Avatar of Andrew Crofts
Andrew Crofts
Flag of Ukraine image

try ([col1] + ' MyCustomText' + [col2)

ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ajaymaster143
ajaymaster143

ASKER

Thanks It help me More