Can you distinguish the billing address and shipping address in address table? They are same fields without any flag
Can you distinguish the billing address and shipping address in address table? They are same fields without any flag
I want to code to update billing and shipping address from scratch. thanks.
Quinfu,
You can determine those by executing the query below:
Code:select distinct BillingAddressId, ShippingAddressId, c.customerid from customer c inner join address a on c.customerid = a.customerid