正确:case when t.log_type=1 then '登入' when t.log_type=0 then '登出' end log_type
错误:case when t.log_type=1 then '登入' when t.log_type=0 then '登出' end t.log_type
本文共 222 字,大约阅读时间需要 1 分钟。
正确:case when t.log_type=1 then '登入' when t.log_type=0 then '登出' end log_type
错误:case when t.log_type=1 then '登入' when t.log_type=0 then '登出' end t.log_type
转载于:https://www.cnblogs.com/hl3292/archive/2011/07/18/2109563.html