Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select *
from mytable
where to_char(mydate,'MMYYYY') = '012004';
dateSelected = request.form("month") & "/01/" & request.form("year")
dim sql, RS
sql = "select * from oracle.table " &_
"where (TRUNC(lastuserdate) >= To_Date('" & dateSelected & "','MM/DD/YYYY') " &_
"AND TRUNC(lastuserdate) <= Last_Day(To_Date('" & dateSelected & "','MM/DD/YYYY'))) "