W
wuzhenzhen
Unregistered / Unconfirmed
GUEST, unregistred user!
我用DELETE语句删除记录:
delete sales_table
where(code=@code)and(storehource=@output_storehource)
and(Sales_Connibalize='调拨')and(amount=@amount)
结果符合删除条件的记录可能不止一条,现在我只想删其中的任意一条
,该怎么做?
delete sales_table
where(code=@code)and(storehource=@output_storehource)
and(Sales_Connibalize='调拨')and(amount=@amount)
结果符合删除条件的记录可能不止一条,现在我只想删其中的任意一条
,该怎么做?