i have one big problem
i want to select data of 2 column but out put shoul come as one column
how to do this?
any one have idea?
Thanks in Advance
if i have 2 colume like [fname] and [lname] then out put shoud be
[name] column
means
[fname] [lname]
vinay patel
then
[name]
vinay patel
select fname+' '+lname as name from yourtable
Vinay Patel escreveu: