2017-04-11 44 views

回答

4

在MySQL中,您可以在DELETE使用ORDER BYLIMIT

delete from t 
    where base_currency = 'USD' 
    order by base_amount asc 
    limit 2;