我想从包含updated
PostgreSQL 列的表中获取最后一个时间图。
我想要一个函数来做到这一点。所以我可以将表名作为参数传递,函数在 column 中返回最新的时间戳updated
。
使用的查询:
select max(updated) from mytable;
我想从我的表中的一系列值中找到缺失的行。例如,在这张照片documentno
'YD4BC2006008'
中是缺失的。
我想通过c_order_id
和找到缺失的行documentno
。
我试过了,但没有返回预期的结果:
select * from
(SELECT distinct c_order_id, documentno,cast(right(documentno,3) as integer) as no
FROM adempiere.c_order
ORDER BY documentno, c_order_id) as f
在此示例中,缺少许多行: from'DGPOS2003030'
到'DGPOS2003068'
。
如何编写查询来检索它们?