Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if(theDate == null || theDate == "" || theDate.length == 0 || theDate == "null"){
proceed without theDate;
}else {
proceed to use theDate;
}
DECLARE @theDate DATETIME
SELECT @theDate = (SELECT begin_date FROM tableOne WHERE some_id = 'some_id_value')
SELECT @theDate
IF @theDate IS NULL
BEGIN
SELECT @theDate
END