sql Viajes menores 2分钟

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql Viajes menores 2分钟相关的知识,希望对你有一定的参考价值。

SELECT a.appointment_id,a.created_dt,a.status,a.amount,a.payment_type, w.unique_id,wt.type_name 
FROM appointment a
left join master m on m.mas_id = a.mas_id
left join workplace w on m.workplace_assign_id = w.workplace_id
left join workplace_types wt on w.type_id = wt.type_id
WHERE a.status in (9,4) AND
a.payment_type in (1,2) AND a.amount>0 
and duration < 2
and a.created_dt > '2018-11-19 00:00:00' AND a.created_dt < '2018-11-26 23:59:59'
ORDER BY a.created_dt ASC

以上是关于sql Viajes menores 2分钟的主要内容,如果未能解决你的问题,请参考以下文章

text Viajes en el tiempo

为啥这个 Sql 语句(有 2 个表连接)需要 5 分钟才能完成?

有没有办法在 SQL 中每分钟只选择第一项?

如何在 pl/sql oracle 中在 5 分钟内插入 100 万条数据?

如何调查为什么每天运行2分钟的sql脚本需要2个小时?

30分钟全面解析-SQL事务+隔离级别+阻塞+死锁