Does anybody know of a way to display the name of a day and the year for Access?? I am trying to display the field name in ASP.
Here is the SQL:
strSql = "select AircraftSerialn o + '-' + right(datename( yy,2003-12-31),1) + '-' + datename(dayofy ear,2003-12-31) + '-' AS AC FROM dbo_tblAircraft WHERE aircraftid = " & request("Aircra ftIDfk")
Set objRS2 = objConn.Execute (strSQL)
Thanks
Here is the SQL:
strSql = "select AircraftSerialn o + '-' + right(datename( yy,2003-12-31),1) + '-' + datename(dayofy ear,2003-12-31) + '-' AS AC FROM dbo_tblAircraft WHERE aircraftid = " & request("Aircra ftIDfk")
Set objRS2 = objConn.Execute (strSQL)
Thanks
Comment