and ${criterion.condition}
and ${criterion.condition} #{criterion.value}
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
and ${criterion.condition}
#{listItem}
and ${criterion.condition}
and ${criterion.condition} #{criterion.value}
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
and ${criterion.condition}
#{listItem}
SCHED_NAME, INSTANCE_NAME, LAST_CHECKIN_TIME, CHECKIN_INTERVAL
delete from qrtz_scheduler_state
where SCHED_NAME = #{schedName,jdbcType=VARCHAR}
and INSTANCE_NAME = #{instanceName,jdbcType=VARCHAR}
delete from qrtz_scheduler_state
insert into qrtz_scheduler_state (SCHED_NAME, INSTANCE_NAME, LAST_CHECKIN_TIME,
CHECKIN_INTERVAL)
values (#{schedName,jdbcType=VARCHAR}, #{instanceName,jdbcType=VARCHAR}, #{lastCheckinTime,jdbcType=BIGINT},
#{checkinInterval,jdbcType=BIGINT})
insert into qrtz_scheduler_state
SCHED_NAME,
INSTANCE_NAME,
LAST_CHECKIN_TIME,
CHECKIN_INTERVAL,
#{schedName,jdbcType=VARCHAR},
#{instanceName,jdbcType=VARCHAR},
#{lastCheckinTime,jdbcType=BIGINT},
#{checkinInterval,jdbcType=BIGINT},
update qrtz_scheduler_state
SCHED_NAME = #{record.schedName,jdbcType=VARCHAR},
INSTANCE_NAME = #{record.instanceName,jdbcType=VARCHAR},
LAST_CHECKIN_TIME = #{record.lastCheckinTime,jdbcType=BIGINT},
CHECKIN_INTERVAL = #{record.checkinInterval,jdbcType=BIGINT},
update qrtz_scheduler_state
set SCHED_NAME = #{record.schedName,jdbcType=VARCHAR},
INSTANCE_NAME = #{record.instanceName,jdbcType=VARCHAR},
LAST_CHECKIN_TIME = #{record.lastCheckinTime,jdbcType=BIGINT},
CHECKIN_INTERVAL = #{record.checkinInterval,jdbcType=BIGINT}
update qrtz_scheduler_state
LAST_CHECKIN_TIME = #{lastCheckinTime,jdbcType=BIGINT},
CHECKIN_INTERVAL = #{checkinInterval,jdbcType=BIGINT},
where SCHED_NAME = #{schedName,jdbcType=VARCHAR}
and INSTANCE_NAME = #{instanceName,jdbcType=VARCHAR}
update qrtz_scheduler_state
set LAST_CHECKIN_TIME = #{lastCheckinTime,jdbcType=BIGINT},
CHECKIN_INTERVAL = #{checkinInterval,jdbcType=BIGINT}
where SCHED_NAME = #{schedName,jdbcType=VARCHAR}
and INSTANCE_NAME = #{instanceName,jdbcType=VARCHAR}