cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
itkai
Engaged Sweeper
What table/field is the windows operating system bit type stored in? I'm trying to write a query that is limited only to x64 windows based systems.

Thanks,
GaryO
1 REPLY 1
RCorbeil
Honored Sweeper II
Case
When tblComputerSystem.SystemType Like 'X86%' Then '32-bit'
When tblComputerSystem.SystemType Like 'x64%' Then '64-bit'
Else ''
End As Bitness,