我有一个包含数字和其他字符串值的列(如“?”,“???”等)
是否可以在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”