|
You can convert the date type into a fixed format string in SQL query, so that you can query not only a certain day, but also a certain year, a month, a certain time, a certain second, because I have been programming under SQLServer2000 , I don't know the SQL functions related to ACCESS, please also masters to give these functions
Write this in SQL Server 2000:
select * from table name where convert (char (10), date field, 120) = '2017-01-05' |
|