Ok i have a table with a date/time field in an access database. i want to extract only the date but i want to do it all in the sql statement so what im trying is this
strSQL = "SELECT DISTINCT SUBSTRING( datDate, 1, 10 ) FROM tblDate"
asp is not recognizing the substring command in the sql statement?
does asp not support the substring sql command? or am i doing something else wrong
strSQL = "SELECT DISTINCT SUBSTRING( datDate, 1, 10 ) FROM tblDate"
asp is not recognizing the substring command in the sql statement?
does asp not support the substring sql command? or am i doing something else wrong