Performing a full join typically requires the use of SQL (Structured Query Language). Here’s a basic example of how you might write a query to perform a full join:
SELECT * FROM table1 FULL JOIN table2 ON table1.id = table2.id;
In this query, table1 and table2 are the two datasets you are joining, and id is the common field between them.