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

最も早い日付と最も遅い日付を選択します

    これは、提供したデータで機能します。MySQLで機能するとは言えませんが、SQLServerでは機能します。

    select t.in_click, 
        t.first_name,
        t.create_date
    from tracker t
    where 
        t.create_date = (select min(create_date) from tracker where in_click = t.in_click)
        or t.create_date = (select max(create_date) from tracker where in_click = t.in_click)
    


    1. ストアドプロシージャ、関数、ルーチンの違いは何ですか?

    2. MySQL接続文字列を非表示にする方法-GitHub(Java)でのユーザー名とパスワード

    3. 読み取りと書き込みを多用するアプリケーションの場合、URLをmysqlに保存するための最良の方法

    4. SQL ServerのLEFT()とSUBSTRING():違いは何ですか?