
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2010 02:41 PM
Hello
I need to have a report where i get a list of all computer with status active .
I've tried with this =
Select tblCompCustom.Computername, tblCompCustom.State
From tblCompCustom Inner Join
tblComputers On tblComputers.Computername = tblCompCustom.Computername
Where tblCompCustom.State = 2
but it did not give me any kind of result.
thank You
Ict dpt
I need to have a report where i get a list of all computer with status active .
I've tried with this =
Select tblCompCustom.Computername, tblCompCustom.State
From tblCompCustom Inner Join
tblComputers On tblComputers.Computername = tblCompCustom.Computername
Where tblCompCustom.State = 2
but it did not give me any kind of result.
thank You
Ict dpt
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2010 05:24 PM
thank You
got it working !
Cheers
got it working !
Cheers

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2010 05:23 PM
try this:
Select tblCompCustom.Computername, tblCompCustom.State
From tblCompCustom Right Join
tblComputers On tblComputers.Computername = tblCompCustom.Computername
Where tblCompCustom.State = 1
