i went in a did as you suggested and tried some more testing. The results were once again interesting.
There should currently be 16,698 lines on this tab. I queried each individual column that I used in my original query. All columns produced the correct number of lines except the ADDR1 column, which reported 11,499 lines.
Here is where it gets more interesting. I then went and added each field one by one in the order they appear and the line count changes depending on the columns being pulled.
SELECT RQL.COMPANY,RQL.REQ_LOCATION, RQL.FROM_LOCATION, RQL.ADDR1
FROMLAWSON_REPORT.PHSOR.ORG (P373711), P373711
.MV.RQLOC RQL
No of Lines = 12199
SELECT RQL.COMPANY,RQL.REQ_LOCATION, RQL.FROM_LOCATION, RQL.ADDR1, RQL.ADDR2
FROM LAWSON_REPORT.PHSOR.ORG (P373711), P373711
.MV.RQLOC RQL
No of Lines = 11999
SELECT RQL.COMPANY,RQL.REQ_LOCATION, RQL.FROM_LOCATION, RQL.ADDR1, RQL.ADDR2, RQL.ADDR3
FROM LAWSON_REPORT.PHSOR.ORG (P373711), P373711
.MV.RQLOC RQL
No of Lines = 12299
SELECT RQL.COMPANY,RQL.REQ_LOCATION, RQL.FROM_LOCATION, RQL.ADDR1, RQL.ADDR2, RQL.ADDR3, RQL.CITY_ADDR5, RQL.STATE_PROV
FROMLAWSON_REPORT.PHSOR.ORG (P373711), P373711
.MV.RQLOC RQL
No of Lines = 12199
SELECT RQL.COMPANY,RQL.REQ_LOCATION, RQL.FROM_LOCATION, RQL.ADDR1, RQL.ADDR2, RQL.ADDR3, RQL.CITY_ADDR5, RQL.STATE_PROV, RQL.COUNTY
FROM LAWSON_REPORT.PHSOR.ORG (P373711), P373711
.MV.RQLOC RQL
No of Lines = 12399