Hello I am using stored procedure to get the data from different tables here is my stored procedure.
SELECT
ev.Id,
ev.Title,
ev.PageUrl,
ev.FromDate,
ev.ToDate,
ev.Isactive,
CONVERT(char(10), eventtime, 108) as EventTime,
ev.UserType,
ev.Street,
ev.Image,
ev.Description,
ev.City,
ev.CountryCode,
ev.CategoryId,
ev.UserId,
ev.StateCode,
cm.Name as 'CountryName',
sm.name as 'StateName',
asp.FirstName as 'FirstName',
Cat.Name as 'CategoryName',
ev.ZipCode
from events ev
inner join countrymaster cm on ev.CountryCode=cm.Id
inner join statemaster sm on ev.StateCode=sm.Id
inner join category cat on ev.Categoryid=cat.Id
left join aspnetusers asp on ev.userid=asp.Id
order by createddate desc
in seventh column
CONVERT(char(10), eventtime, 108) as EventTime,
I am getting the event time by casting it character but when my event time is null then it throws the error like this
Invalid cast from 'System.String' to 'System.TimeSpan'.
The datatype of event time is time.
So how can i set the default value of eventtime column if there is no value present in it.
Use
ISNULL()
to check if the eventime isNULL
or not.If its null then you can replace a empty string '' or some other date according to your choice.