I am following a tutorial for learning SQL and working on Google BigQuery Sandbox. For FULL OUTER JOIN my result is showing in different order than the result in the video. How can I fix this? (P.S. I am using the dataset given by them and I created the dataset and tables similar, and we both are using the exact same code.)
`SELECT employees.name AS employee_name,
employees.role AS employee_role,
departments.name AS department_name
FROM employee_data.employees
FULL OUTER JOIN employee_data.departments
ON employees.department_id = departments.department_id`
Result I am getting (Julie Jones in row 1), [enter image description here](https://i.stack.imgur.com/HF4o5.png)
But the result provided in the tutorial (expected result) (Dave Smith in row 1), enter image description here