Guest User

Untitled

a guest
Feb 17th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Select FirstName + ' ' + secondName from Table
  2.  
  3. SELECT FirstName + ISNULL(' ' + SecondName, '') + ' age(' + CONVERT(nvarchar,age) + ')' from Table
  4.  
  5. select cast( FirstName as varchar)+' '+cast( secondName as varchar) from table
Add Comment
Please, Sign In to add comment