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
INSERT INTO SELECT FROM OPENQUERY question
If first character in string is zero, remove it
Simple Update Query
How to unshare Printers & Faxes and Scheduled Tasks
get data from a gridview to a popup window and then update the gridview
Windows 2008 r2 Cluster Shared Volume - Stuck "Online (Backup in progress, Redirected access)"
Access........How do i "Go To" a record based on user id input
Utility to convert database
Generate a unique* key for a particular string
Can I create a library of user defined functions in access?