恐怕您将不得不诉诸VBA方法。幸运的是,可以在JET SQL中使用VBA方法(尽管性能可能不是最好的)。VBA
Instr方法允许您指定比较模式(0
=二进制=区分大小写):
SELECt table.column FROM table WHERe INSTR(table.column, "String", 0) > 0

恐怕您将不得不诉诸VBA方法。幸运的是,可以在JET SQL中使用VBA方法(尽管性能可能不是最好的)。VBA
Instr方法允许您指定比较模式(0
SELECt table.column FROM table WHERe INSTR(table.column, "String", 0) > 0