E
entodude
What is the SQL-92 equivalent to Access '&' when combining strings? Such as
getting a Full Name using Access is [First] & " " & [Last].
Specifically, I am trying to get a date in format mm/dd/yyyy.
I want Access Date(); I am using SQL-92
CONVERT(DATETIME,CONVERT(varchar,GETDATE())). This returns the Access
equivalent of Now(), with the time stamp, which I do not need.
I tried using the DATEPART(mm, CONVERT(DATETIME,CONVERT(varchar,GETDATE())))
and the dd and yyyy of same function and putting it all together as
mm/dd/yyyy.
I can not find documentation on the SQL-92 method of joining strings.
getting a Full Name using Access is [First] & " " & [Last].
Specifically, I am trying to get a date in format mm/dd/yyyy.
I want Access Date(); I am using SQL-92
CONVERT(DATETIME,CONVERT(varchar,GETDATE())). This returns the Access
equivalent of Now(), with the time stamp, which I do not need.
I tried using the DATEPART(mm, CONVERT(DATETIME,CONVERT(varchar,GETDATE())))
and the dd and yyyy of same function and putting it all together as
mm/dd/yyyy.
I can not find documentation on the SQL-92 method of joining strings.