I have 2 tables:
Table1:
| Record_ID | Country_Key | Postal_Code |
| 1 | USA | 10023 |
| 2 | USA | 2007294 |
| 3 | AR | 8001 |
| 4 | IN | 11001702 |
| 5 | BR | 90096 |
Table2:
| Country_Key | Postal_length |
| USA | 5 |
| AR | 4 |
| IN | 7 |
| BR | 5 |
What I want to do here is to compare the lengths of the postal codes in Table1 - Postal_Code to the Postal_length in Table 2. The Postal_Code should match the number of characters that the Postal_length needs to be. I'm a beginner so not sure how or which tool i should use for this? Thank you again for the help!