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
Help caputring sql profiler trace
recycle bin err
Create a speedometer chart in excel
Stock Market Tracking Database Design : Multiple Buys and Sells
delete confirm popup on asp hyperlink inside repeater control?
Printer error from Excel Documents
Preselect Checkboxlist Controls List Items based Based on matching DataTable Values
How to clear all the connections before restoring a database
Forms and listboxes default value
Access / SQL / VBA / filter records on form according to a date field