Good, I have two tables, one is called PERSONAL and the other TASK, and I do not know if it is possible through the JOIN operator to select the field "name" of the PERSONAL table and the "description" field of the TASK table that has a certain id. The composition of the tables would be:
PERSONAL
- Name
- DNI
- Age
TASK
- Id
- DNI_personnel
- Description
The relationship between both is ID that is the key that propagates from one to another because it is a 1: N relationship I would like the query to return tuples in plan: name1, description1, name2, description2, ... there are .. I think it is necessary to use JOIN and the condition of where would be id = to a value, but I do not know how to put SELECT of both fields being discrete tables