使用通配符’_%’,’_’表示至少匹配一个字符
select * from PartInfo where partno like 'BAV99_%'
这样就查不到BAV99型号的数据,只查得到BAV99LT1G、BAV99-E3-08等型号的数据了。
使用通配符’_%’,’_’表示至少匹配一个字符
select * from PartInfo where partno like 'BAV99_%'
这样就查不到BAV99型号的数据,只查得到BAV99LT1G、BAV99-E3-08等型号的数据了。