Hello Im running a business and i have a mysql line problem that i cant get to function, I have a one line sql entry that im trying to join entrys from "tblCustomerCreditCards" and make them appear on a line im trying to draw from "tblCustomerAddresses"
my line for my tblCustomerAddresses is
select CustomerID,FullName,AddressLine1,City,ZipCode,PhoneNumber from tblCustomerAddresses
and my tblCustomerCreditCards is
select CustomerID,CardholderName,CardNumber,ExpirationMonth,ExpirationYear from tblCustomerCreditCards
my question is how will i get it so that my line from the creditcards comes at the end of the addresses where i can have it all on one line...
If possible can it be written in the format i have it as and not by breaking it down, your help is appreciated...Thanks very much