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
Locking Field On Continuous Form
Problem getting Bala Boss working
How can I log on locally to a perimeter domain machine with a user from an internal domain account?
Save Record Only On Save
SBS2008 Standard - RDS - Virtual Desktops
Mail Merge
How do I get the string associated with each index of a listbox populated from a data object?
sql
CListCtrl Why is SetSelectionMark() not working
C++ Command Line Args