I am using an procedure to Select First-name and Last-name
declare
@firstName nvarchar(50),
@lastName nvarchar(50),
@text nvarchar(MAX)
SELECT @text = 'First Name : ' + @firstName + ' Second Name : ' + @lastName
The @text
Value will be sent to my mail But the Firstname and Lastname comes in single line. i just need to show the Lastname in Second line
O/P First Name : Taylor Last Name : Swift ,
I need the output like this below format
First Name : Taylor
Last Name : Swift