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

分をHH24:MI形式に変換する

    492分を変換するとします:

    select to_char(trunc(sysdate) + 492/24/60, 'hh24:mi') from dual;
    

    関数が必要な場合:

    create or replace 
      function tq84_convert_minutes_hh24mm (p_minutes in number) 
      return varchar2 is
    begin
    
        return to_char (trunc(sysdate) + p_minutes / 24/60, 'hh24:mi');
    
    end tq84_convert_minutes_hh24mm;
    /
    

    後で...

    begin
      dbms_output.put_line (tq84_convert_minutes_hh24mm(492));
    end;
    /
    


    1. SELECT T-SQLコマンドの結果セットに返された行の総数を含めるにはどうすればよいですか?

    2. AndroidSQLiteデータベーステーブルが作成されていません

    3. SQLServerでの更新の選択

    4. MariaDBでのSIN()のしくみ