i have a view and i'm trying to create 2 columns that counts how many valid phone#s are in a single record and how many bad phone#s the first 3 digits ID the bad ph# or blank. there are 6 columns for phone numbers. how would I write this in a view? use a ,case when statement?AND ( (LEFT(lp.primary_phone_number, 3) IN('000','111','222','333','444','555','666','777','888','999') OR lp.primary_phone_number = '') AND (LEFT(lp.secondary_phone_number, 3) IN('000','111','222','333','444','555','666','777','888','999') OR lp.secondary_phone_number = '') AND (LEFT(lp.other_phone_number_1, 3) IN('000','111','222','333','444','555','666','777','888','999') OR lp.other_phone_number_1 = '') AND (LEFT(lp.other_phone_number_2, 3) IN('000','111','222','333','444','555','666','777','888','999') OR lp.other_phone_number_2 = '') AND (LEFT(lp.other_phone_number_3, 3) IN('000','111','222','333','444','555','666','777','888','999') OR lp.other_phone_number_3 = '') )