Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来搜索 DeviceID 包含字符串文字的 USB 设备VID_217C。是否可以?
VID_217C
换句话说,我正在寻找以下查询
select * from Win32_USBHub where DeviceID contains "VID_217C"
只返回那些Win32_USBHubs 中VID_217C的子字符串DeviceID。
Win32_USBHub
DeviceID
您可以使用类似运算符
select * from Win32_USBHub where DeviceID LIKE "%VID_217C%"