gpt4 book ai didi

mysql - 检测MySQL中的值是否为数字

转载 作者:IT老高 更新时间:2023-10-28 12:49:43 34 4
gpt4 key购买 nike

有没有办法检测 MySQL 查询中的值是否为数字?比如

SELECT * 
FROM myTable
WHERE isANumber(col1) = true

最佳答案

您也可以使用正则表达式...就像:

SELECT * FROM myTable WHERE col1 REGEXP '^[0-9]+$';

引用: http://dev.mysql.com/doc/refman/5.1/en/regexp.html

关于mysql - 检测MySQL中的值是否为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5064977/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com