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

ログインおよびログアウト レコードによるオンライン ユーザーの取得

    このようなもの:

    select * from UserLog l1
    where Operation = 'Enter' and 
          not exists(select * from UserLog l2 
                     where l1.user = l2.user and 
                           l2.Operation = 'Exit' and 
                           l2.Time > l1.Time)
    


    1. SQL Serverで小文字を大文字に変換する方法– UPPER()

    2. パラメータ化されたSQLクエリで実行に失敗するADODBコマンド

    3. テスト目的でプライベートplsqlプロシージャにアクセスする方法はありますか?

    4. MySQLの注文番号/文字の組み合わせ