A
Andrea
Here is a simple query that should match
Buy.ID with Sell.BuyID
SELECT Buy.ID, Sell.ID, Sell.BuyID
FROM Buy INNER JOIN Sell ON Buy.ID = Sell.BuyID;
But here is the result:
Buy.ID Sell.ID Sell.BuyID
3 3 15
4 4 16
5 5 17
IT ACTUALLY MATCHED Buy.ID WITH Sell.ID!!!!!
How is this possible?
Any idea is welcome, or should I just trash Microsoft
products?
Buy.ID with Sell.BuyID
SELECT Buy.ID, Sell.ID, Sell.BuyID
FROM Buy INNER JOIN Sell ON Buy.ID = Sell.BuyID;
But here is the result:
Buy.ID Sell.ID Sell.BuyID
3 3 15
4 4 16
5 5 17
IT ACTUALLY MATCHED Buy.ID WITH Sell.ID!!!!!
How is this possible?
Any idea is welcome, or should I just trash Microsoft
products?
