我有时间将MAJHMS
字段存储为varchar,如:
93601
112737
我需要搜索
select * from table where majhms = 936
或
select * from table where majhms = 1136
但不是完整的6个符号112737
答案 0 :(得分:1)
查看import java.util.*;
public class RandomNumbers {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Input Long Seed: ");
long seed = scan.nextLong();
System.out.println("Input Modulus: ");
int modulus = scan.nextInt();
System.out.println("Number of Iterations: ");
int iterations = scan.nextInt();
int[] arrayBox =new int[modulus];
Random random = new Random(seed);
for (int i=0;i<iterations;i++){
arrayBox[random.nextInt(modulus)]++;
}
for (int i=0; i<modulus; i++){
System.out.println("arrayBox["+i+"]="+arrayBox[i]);
}
}
}
表达式,例如LIKE
。 LIKE基于模式的过滤器。