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
OCS 2007 Issue
Can't login after changing from domain to workgroup
Trace dependents/precedents on multiple cells in excel (macro)
Open form in acDialog command not working
STL: Removing dublicates from the list of strings
Change a SQL Service account
MDI form background colour
Repeat Header columns on each and every page of the Report
how do I send as a distribution group in exchange 2007?
copy selected macros to a brand new workbook