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.
对于 System Center Configuration Manager R2 中集合的成员资格规则,我必须编写一个 WQL 查询,这有点复杂,并且让我很难为其构建逻辑。
假设我需要两张表:用户和系统。
我的目标是编写一个查询来检索“最后登录用户”(系统表的列)的“办公室”(用户表的列)等于给定值的所有系统。
我假设我需要一个子选择,但我无法弄清楚确切的逻辑。
你的问题有点含糊,但在伪 sql 中你只需要这样做:
SELECT * FROM Systems JOIN Users ON Systems.LastLogonUser = Users.Username WHERE Users.Office = 'value'
特别是关于 SCCM,如果用户的办公室信息是从 AD 中发现的,我不记得了,但如果发现了,那么其余的逻辑就成立了。