Microsoft
Software
Hardware
Network
Question : Need to return " "
if this
SELECT AboutME FROM tbl_Profile
WHERE UserID = @sUserId
returns null then I would like to return " "
a space textbox.
ALTER PROCEDURE [dbo].[sprGetAboutMeName]
(
@sUserId nvarchar(50)
)
AS
BEGIN
-- Unique Columns to check whether already exists
SELECT AboutME FROM tbl_Profile
WHERE UserID = @sUserId
RETURN
END
Answer : Need to return " "
SELECT coalesce(AboutMe,'') FROM tbl_Profile
WHERE UserID = @sUserId
Random Solutions
Use range of Cells as criteria for Excel Query
How to change the location of Listbox using code
Code Behind Value in Hyperlink Field
Problems saving an excel workbook in Access vba
Hooking 5.1 Surround sound to xBox 360 premium
Sharepoint How do I change Web Part Title?
How to import PST files to Exchange 2007
What is blocking Remote Desktop?
sql - if exists
Select Query