I have a desktop app (winforms) with an embedded Local Database SQL CE .
I have 2 tables in my database: Customers and Orders.
In Customers table I have : customerID , customerName.
In Orders table I have : CustomerID , OrderID, OrderName.
I want to display a report with : CustomerID , CustomerName , OrderName.
How can I get the value for customerName that matches the customerID in ordersTable.
Any help would be appriciated.