Question : SQL 2005 Select Query from multiple tables

I'm fairly new to SQL, so I don't know if this could be done, but I trying to retrieve data from a customer table and a service (servmed) table for all active customers.  There are seven services I'm trying to retrieve and they appear in 7 or more rows per customer... I'm trying to get them to appear as one row per customer.  Here's the query I'm using:
1:
2:
3:
4:
5:
6:
7:
8:
SELECT C.CUSTNO, C.[DESC], C.CONTDATE, C.CONTEXP, s.SERVCODE, s.ACTIVERATE
FROM SERVMED S
left outer join Customer c on s.level1 = c.level1
WHERE s.SERVCODE IN('NB', 'TC','ND','BO','FO','BS', 'PW')
	and c.level1 = c.id 
	and s.level='1'
	and c.inactive = 'False'
order by c.custno, s.servcode 

Answer : SQL 2005 Select Query from multiple tables

sidebar1 is floating up into the nav div and causing the buttons to wrap (see screenshot).  My guess is you should invert the order of the divs and clear floats before sidebar1 so it stays below the nav.
Random Solutions  
 
programming4us programming4us