add remove split language chart show hidden hide
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Table Create Table
employee CREATE TABLE `employee` (
  `emp_id` decimal(4,0) DEFAULT NULL,
  `fname` varchar(10) DEFAULT NULL,
  `lname` varchar(10) DEFAULT NULL,
  `mgr_id` decimal(4,0) DEFAULT NULL,
  `hire_date` date DEFAULT NULL,
  `job_id` decimal(2,0) DEFAULT NULL,
  `dept_id` decimal(3,0) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Records: 0  Duplicates: 0  Warnings: 0
Table Create Table
employee CREATE TABLE `employee` (
  `emp_id` decimal(4,0) DEFAULT NULL,
  `fname` varchar(10) DEFAULT NULL,
  `lname` varchar(10) DEFAULT NULL,
  `mgr_id` decimal(4,0) DEFAULT NULL,
  `hire_date` date DEFAULT NULL,
  `job_id` decimal(2,0) DEFAULT NULL,
  `dept_id` decimal(3,0) DEFAULT '111'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Records: 0  Duplicates: 0  Warnings: 1
Records: 0  Duplicates: 0  Warnings: 1
Table Create Table
employee CREATE TABLE `employee` (
  `emp_id` decimal(4,0) DEFAULT NULL,
  `fname` varchar(10) DEFAULT NULL,
  `lname` varchar(10) DEFAULT NULL,
  `mgr_id` decimal(4,0) DEFAULT NULL,
  `hire_date` date DEFAULT NULL,
  `job_id` decimal(2,0) DEFAULT NULL,
  `dept_id` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci