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

何千、何百、何十もある量を調べてください

    簡単な答えは、金額の1000の数である商が何であれ、その数を1000で割ることです。次に、余りを100で割ると、商は100の数になります。そして、余りを再び10で割ると、商は10の数になります

    このようなもの:

    quotient = 3660 / 1000;     //This will give you 3
    remainder = 3660 % 1000;    //This will give you 660
    

    次に、

    quotient1 = remainder/ 100;     //This will give you 6
    remainder1 = remainder % 100;    //This will give you 60
    

    そして最後に

    quotient2 = remainder1 / 10;     //This will give you 6 
    


    1. 接続プールの問題

    2. Oracleの正規表現からグループを抽出するにはどうすればよいですか?

    3. dbms_output.put_line

    4. 既存のデータベースにSouthをインストールする際の問題。 MySqlは「スキーマ変更ステートメント」をサポートしていません