I have a problem when i want to create tables, I want to create three tables Company, Employee and department.
department table has two foreign key the employee_Id and the company_Id but there is a syntax error can you please fix it.
here is the code:-
Code:
CREATE TABLE Company ( Company_Id int primary key not null, Company_Name varchar(255), )
Leave a comment: