Start learning

SQL Compiler

You can use the following Table information in your learning:

employees (full_name, email, salary, department_id, manager_id)


    TABLE employees (
  • id INT AUTO_INCREMENT PRIMARY KEY
  • full_name VARCHAR(100) NOT NULL
  • email VARCHAR(100) NOT NULL UNIQUE
  • salary DECIMAL(10, 2) NOT NULL
  • department_id INT
  • created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
  • );