I am trying to get DateTime.now in SQL stored procedure?
Can this be done with T-SQL or do i have to pass in the date with a parameter?
--Set Last download date
SET @DateAndTime = ????????;
UPDATE
Valuation
SET
LastDownloadDate = @DateAndTime
WHERE
FormMobiValuationId = @FormMobiValuatoinId
