Python

環境
PyCharm 2021.3
Python 3.9.7

書式
def 関数名():
if 条件式:
return
returnを使用して戻り値ではなく関数の処理の途中で ...

Python

環境
PyCharm 2021.3
Python 3.9.7

書式
def 関数名(引数)
if 条件式:
return 値
retunを使用してプログラム内で処理を終了しま ...

Python

環境

PyCharm 2021.3Python 3.9.7

構文
if 条件式:
sys.exit()
Pythonでプログラムを終了するには「exit」を使います。
使用例

impor ...

Oracle

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production

SQL構文
SELECT * FROM DBA_S ...

Oracle

環境

Oracle Database 11g Release 11.2.0.1.0 - 64bit ProductionRed Hat Enterprise Linux Server release 6.4 (Santiago) ...

Java

環境

Java11Eclipse4.14.0

書式
1.抽象クラスの作成

abstract class 抽象クラス名{ abstract void 抽象メソッド名(); データの型 変数名 =値}

2.抽象 ...

Oracle

環境

Oracle Database 11g Release 11.2.0.1.0 - 64bit ProductionRed Hat Enterprise Linux Server release 6.4 (Santiago) ...

Oracle

環境

Oracle Database 11g Release 11.2.0.1.0 - 64bit ProductionRed Hat Enterprise Linux Server release 6.4 (Santiago) ...

Oracle

環境
Oracle Database 11g Release 11.2.0.1.0 – 64bit Production
Red Hat Enterprise Linux Server release 6. ...

Java

環境

Java11Eclipse4.14.0

書式
1.interfaceの定義
interface インターフェース名 {メソット名();}
2.interfaceを実装

class Chil ...

Oracle 12c

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production

書式
COALESCE(列名1)

COALE ...

Java

環境
Java11
Eclipse4.14.0

書式
1.抽象クラスの作成

abstract class 抽象クラス名{ abstract void 抽象メソッド名(); }

2.抽象クラ ...

Oracle

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production

書式
SELECT * FROM ROLE_SYS ...

Oracle

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production

書式
NULLIF(列名1,列名2)
NU ...

TypeScript

環境
Windows 10 Home 64bit
TypeScript 4.4.4

書式
1.タプル名.push(値)
タプル(tuple)の先頭に要素を追加します
2.タプル名.p ...

Java

環境

Java11Eclipse4.14.0

書式
1.抽象クラスの作成

abstract class 抽象クラス名{ abstract void 抽象メソッド名(); }

2.抽象クラスをextendsで ...

TypeScript

環境
Windows 10 Home 64bit
TypeScript 4.4.4

書式
1.Mapオブジェクトを生成
let Mapオブジェクト名 = new Map();

2 ...

TypeScript

環境
Windows10 64bit
TypeScript 4.4.4

書式
1.Mapオブジェクトを生成
let Mapオブジェクト名 = new Map();
2.値を追加 ...