【发布时间】:2015-09-01 07:31:22
【问题描述】:
我正在尝试从两个表中获取一个表,但我需要在相同日期之前同步记录而不需要时间
select *
from Transactions , SellerIPLogins
where Transactions.SellerId =SellerIPLogins.SellerId
and Transactions.SellerId=3141 and Transactions.Payment>1
and **Transactions.Date=SellerIPLogins.Date**
order by Transactions.Date desc
【问题讨论】:
标签: sql sql-server