mysql列存储引擎-自定义函数-return返回select语句结果异常-问题定位
相关场景: 2022-09-15 mysql列存储引擎-POC-Q2-语句范围缩小后问题定位_帝尊悟世的博客-CSDN博客
相关问题: https://stoneatom.yuque.com/staff-ft8n1u/luxxoy/dc73f9
-
- CREATE TABLE `employees` (
- `employee_id` int(11) NOT NULL AUTO_INCREMENT,
- `employee_name` varchar(50) NOT NULL,
- `employee_sex` varchar(10) DEFAULT '男',
- `hire_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `employee_mgr` int(11) DEFAULT NULL,
- `employee_salary` float DEFAULT '3000',
- `department_id` int(11) DE