Hello, has anyone know what is the best way to sea...
# suitetalkapi
h
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
@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 )
🙌 2
h
thanks
t
You're welcome! Good luck.
👍 1