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
Count of users in AD group
Error Code 429
Inserting null value using currentproject.connection.<wbr />execute
Word cannot obtain the data for the excel.sheet.12
Looking for a way to edit our Global Address list in 2003 server AD
RS-485 Serial Communications
SQL Query
Multiple Instances??
Application Settings are not functioning
Open Sharepoint server's pdf file in asp.net...