我有一个包含数字和其他字符串值的列(如“?”,“???”等)
是否可以在sqlite中的where子句中添加“is number”条件?就像是:
select * from mytable where isnumber(mycolumn)
从
documentation,
原文链接:https://www.f2er.com/sqlite/197845.htmlThe typeof(X) function returns a string that indicates the datatype of the expression X: “null”,“integer”,“real”,“text”,or “blob”.
你可以使用typeof(mycolumn)=“integer”