Hello, has anyone know what is the best way to search address of customer
I CAN search like this but seem the result return for me is not enough, anyone know the other query to search?
t
tdietrich
10/01/2021, 10:46 AM
@Hung The address details are stored in the EntityAddress table. You can join like this:
Copy code
SELECT
*
FROM
CustomerAddressbook
INNER JOIN EntityAddress ON
( EntityAddress.nkey = CustomerAddressbook.AddressBookAddress )