How can I have such a result from two tables? With SQL command

Mansour_Dalir 1,676 Reputation points
2024-03-12T04:44:19.1833333+00:00

User's image

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
1,571 questions
Access
Access
A family of Microsoft relational database management systems designed for ease of use.
317 questions
0 comments No comments
{count} votes

Accepted answer
  1. Viorel 113.7K Reputation points
    2024-03-12T05:50:40.22+00:00

    In Access or SQL, try to define this query:

    SELECT [Table 1].[Description From], [Table 1].From, [Table 2].[Description From] as [Description To], [Table 2].From as [To]
    FROM [Table 1] 
    INNER JOIN [Table 2] ON [Table 1].To = [Table 2].From
    

0 additional answers

Sort by: Most helpful