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
Calendar Options grids
BootMGR Is missing
How to import table from Oracle DB with ODBC ?
sharepoint create site column programmatically
Changing properties of a Read Only field
SQL Code for Date Concatenating
Remote Desktop - security over public Internet
Foxpro 2.6a for Windows under XP Virtual Machine
SQL statement (left join) not working as expected
DTS on SQL2008