Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 excel 的 odbc 连接调用查询。
我有一个 where 子句,我想在其中使用日期。
这适用于日期 sale.saledate>={d '2012-10-29'}
但我也需要添加时间
我试过 sale.saledate>={d '2012-10-29 3:30 PM'}
但这不起作用。
有任何想法吗?
试试 {ts '2012-10-29 15:30:00'}。搜索 ODBC 日期时间格式。ODBC 有自己的日期、时间和时间戳语法,驱动程序应该将这些语法转换为数据库。