scope.query

来自「Pegasus is an open-source implementation」· QUERY 代码 · 共 30 行

QUERY
30
字号
####################################### 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 + =
减小字号Ctrl + -
显示快捷键?