refactor: 部分表大小写问题
This commit is contained in:
parent
a33a3c79f9
commit
f37485fe0e
|
@ -219,9 +219,9 @@
|
||||||
api_test_case t1
|
api_test_case t1
|
||||||
LEFT JOIN api_definition_exec_result t2 ON t1.last_result_id = t2.id
|
LEFT JOIN api_definition_exec_result t2 ON t1.last_result_id = t2.id
|
||||||
inner join api_definition a on t1.api_definition_id = a.id
|
inner join api_definition a on t1.api_definition_id = a.id
|
||||||
LEFT JOIN USER u1 ON t1.update_user_id = u1.id
|
LEFT JOIN `user` u1 ON t1.update_user_id = u1.id
|
||||||
LEFT JOIN USER u2 ON t1.create_user_id = u2.id
|
LEFT JOIN `user` u2 ON t1.create_user_id = u2.id
|
||||||
LEFT JOIN USER u3 ON t2.user_id = u3.id
|
LEFT JOIN `user` u3 ON t2.user_id = u3.id
|
||||||
<where>
|
<where>
|
||||||
<if test="request.name != null and request.name!=''">
|
<if test="request.name != null and request.name!=''">
|
||||||
and t1.name like CONCAT('%', #{request.name},'%')
|
and t1.name like CONCAT('%', #{request.name},'%')
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
t2.`name` projectName
|
t2.`name` projectName
|
||||||
FROM
|
FROM
|
||||||
operating_log t
|
operating_log t
|
||||||
LEFT JOIN USER t1 ON t.oper_user = t1.id
|
LEFT JOIN `user` t1 ON t.oper_user = t1.id
|
||||||
LEFT JOIN project t2 ON t.project_id = t2.id
|
LEFT JOIN project t2 ON t.project_id = t2.id
|
||||||
LEFT JOIN workspace w on t2.workspace_id = w.id
|
LEFT JOIN workspace w on t2.workspace_id = w.id
|
||||||
<where>
|
<where>
|
||||||
|
@ -67,7 +67,7 @@
|
||||||
t2.`name` projectName
|
t2.`name` projectName
|
||||||
FROM
|
FROM
|
||||||
operating_log t
|
operating_log t
|
||||||
LEFT JOIN USER t1 ON t.oper_user = t1.id
|
LEFT JOIN `user` t1 ON t.oper_user = t1.id
|
||||||
LEFT JOIN project t2 ON t.project_id = t2.id
|
LEFT JOIN project t2 ON t.project_id = t2.id
|
||||||
LEFT JOIN workspace w on t2.workspace_id = w.id
|
LEFT JOIN workspace w on t2.workspace_id = w.id
|
||||||
<where>
|
<where>
|
||||||
|
|
|
@ -8,8 +8,8 @@ INNER JOIN (
|
||||||
ader.id AS result_id
|
ader.id AS result_id
|
||||||
FROM
|
FROM
|
||||||
api_test_case atc
|
api_test_case atc
|
||||||
LEFT JOIN USER u1 ON atc.create_user_id = u1.id
|
LEFT JOIN `user` u1 ON atc.create_user_id = u1.id
|
||||||
LEFT JOIN USER u2 ON atc.update_user_id = u2.id
|
LEFT JOIN `user` u2 ON atc.update_user_id = u2.id
|
||||||
LEFT JOIN (
|
LEFT JOIN (
|
||||||
SELECT
|
SELECT
|
||||||
max( create_time ) create_time,
|
max( create_time ) create_time,
|
||||||
|
@ -24,4 +24,4 @@ INNER JOIN (
|
||||||
) tc
|
) tc
|
||||||
SET tt.last_result_id = tc.result_id
|
SET tt.last_result_id = tc.result_id
|
||||||
WHERE
|
WHERE
|
||||||
tt.id = tc.id;
|
tt.id = tc.id;
|
||||||
|
|
Loading…
Reference in New Issue