如何检查值是否是SQLite中的数字

前端之家收集整理的这篇文章主要介绍了如何检查值是否是SQLite中的数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含数字和其他字符串值的列(如“?”,“???”等)

是否可以在sqlite中的where子句中添加“is number”条件?就像是:

select * from mytable where isnumber(mycolumn)
documentation,

The typeof(X) function returns a string that indicates the datatype of the expression X: “null”,“integer”,“real”,“text”,or “blob”.

你可以使用typeof(mycolumn)=“integer”

原文链接:https://www.f2er.com/sqlite/197845.html

猜你在找的Sqlite相关文章