I\'m a MySQL guy working on a SQL Server project, trying to get a datetime field to show the current time. In MySQL I\'d use NOW() but it isn\'t accepting that.
<
getdate()
is the direct equivalent, but you should always use UTC datetimes
getutcdate()
whether your app operates across timezones or not - otherwise you run the risk of screwing up date math at the spring/fall transitions