嗨,大家好!
               我有一个表,其中有一个名为“ Calldate”的列,其中包含日期时间值。现在在此列中,有许多行具有相同的日期和时间值。因此,我需要从表中检索这些值。

伙计们帮我完成任务..
提前感谢。

最佳答案

尝试这个 :

Select
*
from table1
inner join
(
Select
Calldate
from table
group by Calldate
having count(*)>1
)
as temp_table on (table1.Calldate=temp_table.Calldate)

10-05 20:32