异常语句:
select substr(station,1,16),emp into l_atename, EMP from sfc.r_ate_emp_t where ip=MYIP limit 1;
改为一下
select substr(station,1,16),`emp` into l_atename,EMP from sfc.r_ate_emp_t where ip=MYIP limit 1;
然而并没有出现预期的效果, why?
改为
select substr(station,1,16),`emp` into l_atename,C_EMP from sfc.r_ate_emp_t where ip=MYIP limit 1; 作者: zhgc 时间: 2022-7-1 12:12