Commit b9097319 b909731976984b5b2c0f9c7e97cd0487706da513 by zhanghao

commit

1 parent 55cf9a15
use testdb;
select count(1) from qa_log;
select count(1) from qa_log where rest='ok' and status='200' and code='0';
select count(1) from qa_log where rest!='ok' or status!='200' or code!='0';
select count(1) from qa_log where status='200';
select count(1) from qa_log where status!='200';
select count(1) from qa_log where code='0';
select count(1) from qa_log where code!='0';
\ No newline at end of file
select count(1) from qa_log where requestUri like concat('%','gateway.do','%');
select count(1) from qa_log where requestUri like concat('%','gateway.do','%') and (status like '200' and code like '0');
select count(1) from qa_log where requestUri like concat('%','gateway.do','%') and (status not like '200' or code not like '0');
\ No newline at end of file
......