sql >> データベース >  >> RDS >> Sqlserver

SQL更新top1行クエリ

    With cte as (
    select  top(1) shipfirtsname  
    From ShipBillInfo 
    where   CustomerId='134' 
    order by  OredrGUID desc)
    Update cte set shipfirstname='abc';
    


    1. SQLiteを使用したAndroidListView

    2. PGpoolのガイド-ヒントと観察:パート3-

    3. T-SQL動的SQLおよび一時テーブル

    4. MySQLi count(*)は常に1を返します