Question : How to tranlate SQL query to WQL query for SCCM 2007

I have the following SQL query that I can run successfully against the SCCM 2007 SQL database in SQL Management Studio and it returns the IP addresses in between the > and < symbols:

select * from dbo.v_RA_System_IPAddresses where IP_Addresses0 > '10.0.1.51' and IP_Addresses0 < '10.0.1.99'

However, I need to run this using WQL in SCCM 2007 in order to identify the machines there.  Does anyone know how to translate this SQL query into WQL for SCCM 2007 queries?

Answer : How to tranlate SQL query to WQL query for SCCM 2007

select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier from SMS_R_System where SMS_R_System.IPAddresses like "10.0.1.[5-9][0-9]%"
Random Solutions  
 
programming4us programming4us