📄 scope.query
字号:
####################################### Scope testing queries. #######################################select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_ComputerSystem::Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = CIM_ComputerSystem.CIM_ComputerSystem::Descriptionselect * from CIM_ComputerSystem where CIM_ComputerSystem::Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = CIMComputerSystem::Descriptionselect * from CIM_ComputerSystem where Description = 'Computer System'select * from CIM_ComputerSystem where 'Computer System' = Descriptionselect * from CIM_System where CIM_ComputerSystem::Description = 'Computer System'#Causes an interesting BUG: changes chain to CIM_System.CIM_ComputerSystem.CIMComputerSystem::Descriptionselect * from CIM_System where CIM_ComputerSystem.CIM_ComputerSystem::Description = 'Computer System'select * from CIM_System where CIM_System::Description = 'Computer System'select * from CIM_System where CIM_System.CIM_ComputerSystem::Description = 'Computer System'#Causes an interesting BUG: changes chain to CIM_System.CIM_ComputerSystem.CIMComputerSystem::Descriptionselect * from CIM_System where CIM_EnabledLogicalElement::CIM_System.Description = 'Computer System'#Validate should be catching this invalid query.select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_OperatingSystem::Description = 'Computer System'#Validate should be catching this invalid query.select * from CIM_ComputerSystem where CIM_ComputerSystem.CIM_OperatingSystem::OSType = 4select * from CIM_ComputerSystem where CIM_System::Description = 'Computer System'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -