发布网友 发布时间:2022-04-29 16:12
共7个回答
热心网友 时间:2022-04-08 03:11
使用SQL的substr函数即可。
该方式格式如下:
substr( string, start_position, [ length ] );
string:源字符串;
start_position:提取的位置,字符串中第一个位置始终为1;
[ length ]:提取的字符数,如果省略,substr将返回整个字符串;
函数功能:截取函数,可以实现提取字符串中指定的字符数;
针对本例举例说明:
select * from 表名 where substr([D],1,2)=“10”
语句功能说明:从指定表中查询D字段第1、2个字符为“10的记录”。
热心网友 时间:2022-04-08 04:29
select *or
select *
热心网友 时间:2022-04-08 06:03
select * from xx where substring(code,2,4)='0000'热心网友 时间:2022-04-08 07:55
select * from table where length(column) = 某个值热心网友 时间:2022-04-08 10:03
select * from table where code%10000 = 0直接求模取余,能整除10000的就是尾数就是4个0
热心网友 时间:2022-04-08 12:27
字符型的话:WHERE CODE LIKE '_0000'热心网友 时间:2022-04-08 15:09
where right(code,4)='0000'