dates are nvarchar in db and i need it to work with parameter date
This work if i hardcode the date
WHERE date >= '2014-06-28'
Here is what i want to have
WHERE date >= @startdate AND date <= @enddate
But this does not work.
Systemdeveloper @ 4film
dates are nvarchar in db and i need it to work with parameter date
This work if i hardcode the date
WHERE date >= '2014-06-28'
Here is what i want to have
WHERE date >= @startdate AND date <= @enddate
Systemdeveloper @ 4film