could anyone provide how to edit codes to include multiple zip codes in a list manager (that also can be used in extractions?) And should I use = or Like?
Hi Joe,
Here's an example of how to get more than one zip code via a manual edit. Does this help?
select distinct customer_nofrom dbo.VS_ADDRESS where LEFT(postal_code,5) in ('63124','63116') and primary_ind = 'Y'
Matt