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

レコードをループするカーソルの作成に関する SQL Server 2008 要求の例

    declare cur cursor for 
    select id from tbl 
    open cur
    declare @id int
    fetch next from cur into @id
    while (@@FETCH_STATUS = 0)
    begin
        print(@id)
        fetch next from cur into @id
    end
    close cur
    deallocate cur
    
    -- just replace "tbl" with your table name and "id" with your field name
    -- and do whatever you want in begin-end block (now it simply prints the id of each record)
      


    1. 一致した配列要素を除外する

    2. コマンドラインからmysql列を取得する

    3. データの配列を入力パラメータとしてOracleプロシージャに渡す

    4. heroku、postgreSQL、django、comments、tastypie:指定された名前と引数のタイプに一致する演算子はありません。明示的な型キャストを追加する必要があるかもしれません