Oracle provides functions to test whether a stored value is NaN or +-infinity. Is there something similar that can be used in Access and Sql Server?
相关问题
- sql execution latency when assign to a variable
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
相关文章
- Entity Framework 4.3.1 failing to create (/open) a
- Code for inserting data into SQL Server database u
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
- Is recursion good in SQL Server?
- How can I convert a OLE Automation Date value to a
Yes, Access can detect "NaN" and "+/-Infinity", at least for values that reside in
Double
columns of a native Access table:You can even have Access perform queries like the following, which will return all rows that contain a "NaN" (positive or negative) in the
Double
column:However, support for those special values could very well be incomplete. For example, I'm not aware of a way to insert or update those values (e.g.,
CDbl("1.#INF")
does not work.)