Microsoft
Software
Hardware
Network
Question : SQL Rewrite this dateadd line
How can I name this with the date?
SELECT
@Day2 As DATEADD(DAY, -1, GetDate()),
The resulting field name I need - '01/21/2010'
with the data @Day2
Answer : SQL Rewrite this dateadd line
thats not possible without using a dynamic sql
DECLARE @Day2 DATETIME = Getdate()
DECLARE @sql VARCHAR(1000)
SET @sql = 'SELECT '+ CONVERT(VARCHAR, @Day2, 112) + 'As "'+ cast( DATEADD(DAY, -1, GetDate()) AS varchar) +'" '
EXEC (@sql)
Random Solutions
check date plus 90 days
RDP Fails to Connect
Excel 2007 / 2003 Compatibility issue from Macro
Please correct query
Access2007 Runtime - running an app without Office 2007 installed
How do I get correct calculations using Dcount in a Report that is based on a filtered table?
Set an incrementing Sequence number.
Could not find installable ISAM, sql server 2005, SP3
Increase the size of VDI
Combo box row source - modify query to work in VBA