I have a PHP application which connects to Volusion store and exports data using query string, and the query string in API like following
$url="http://www.domain.com/net/WebService.aspx?Login=jusername&EncryptedPassword=7602B3272D929D17B5138382F2AE4F4C6102A12AEB1F476293C16A5F731949B6&EDI_Name=Generic\Customers&SELECT_Columns=CustomerID,LastLogin";
Now I want to fetch data from multiple tables and my query is like
SELECT Customers.CustomerID, Customers.FirstName, Customers.LastName, Customers.CompanyName, Customers.EmailAddress, Login_History.LastModified FROM Customers JOIN Login_History ON (Login_History.CustomerID=Customers.Customerid)
Does anyone know how to write JOIN
query in Volusion API connection URL?