I have two tables that i have created. I am trying to select all columns from both tables and put them into one. For instance Employee Table has (First_name, Last_name, Address, City) JobTitle Table has (Job_ID, High_salary, Low_salary) I need to combine them to be all together for instance (First_name, Last_name, Address, City, Job_ID, High_salary, Low_salary).
↧