Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
1sqlover
Yak Posting Veteran
56 Posts |
Posted - 2007-02-02 : 17:21:42
|
How can I combine the data from two columns with a space in the middle as an ALIAS?For example:FirstName,LastNameJohn,Doe AS John DoeJane,Doe AS Jane DoeIs this possible? |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2007-02-02 : 17:34:28
|
SELECT FirstName + ' ' + LastName AS FullNameFROM YourTableIs that what you mean?Tara Kizer |
 |
|
1sqlover
Yak Posting Veteran
56 Posts |
Posted - 2007-02-02 : 17:56:18
|
Cool, thanks. |
 |
|
|
|
|