CREATE TABLE Employee( 
    EmployeeID INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, 
    FirstName VARCHAR(50), 
    LastName VARCHAR(50), 
    Salary DECIMAL(10,2), 
    ManagerID INT
    ); 

INSERT INTO Employee (FirstName, LastName, Salary, ManagerID)VALUES
('Robert', 'Brown', 150000.50, NULL);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: