Oracle 12c

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

書式
LTRIM(word)
wordで指 ...

NumPy

環境
Python3.9.2
PyCharm 2021.3.3

書式
ndarray.astype(dtype, order=’K’, casting=’unsa ...

Perl

環境
Perl 5.32.1
Windows10 home 64bit

書式
2つの値が等しいかどうかを判別する場合、数値を比較するには「==」を使い、
文字列を比較するには「eq」を使いま ...

NumPy

環境
Python3.9.2
PyCharm 2021.3.3

書式
np.array(, dtype=’int64′)
np.array(, dtype=np.in ...

NumPy

環境
Python3.9.2
PyCharm 2021.3.3
書式
np.array(Image.open(‘画像パス’))
np.array()にPIL.Image. ...

Oracle 12c

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

書式
TO_CHAR(SYSDATE, フォーマッ ...

PostgreSQL

環境
Windows 10 64bit
PostgreSQL 9.6.5

操作方法
1.全ビューを調べる

select viewname, definition from pg_views ; ...

Oracle 12c

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

書式
CURRENT_DATE
現在の日付 ...

Oracle 12c

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

書式
SYSDATE
現在の日付を取得する ...

PostgreSQL

環境
Windows 10 64bit
PostgreSQL 9.6.5

書式1  ユーザー(ロール)を作成する
CREATE ROLE ロール名 WITH LOGIN PASSWORD ̵ ...

PostgreSQL

環境
Windows 10 64bit
PostgreSQL 9.6.5

操作方法
1.SELECT権限を付与する
書式
GRANT SELECT ON テーブル名 TO ロール名; ...

Oracle 12c

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

構文
INSTR(word, target ] ...

PostgreSQL

環境
Windows 10 64bit
PostgreSQL 9.6.5

書式
psql -h 接続先 -p ポート番号 -U ユーザー名 -d データベース名

操作例

>p ...

Oracle 12c

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

構文
EXTRACT(element FROM d ...

PostgreSQL

環境
windows10 64bit
postgresql 13.2

書式
select * From pg_views
where schemaname = ‘public&# ...

PostgreSQL

環境
windows10 64bit
postgresql 13.2

1.データベースを指定する
>psql -U postgres
ユーザ postgres のパスワード:

PostgreSQL

環境
windows10 64bit
postgresql 13.2

書式
COALESCE( 対象文字列 , nullの場合に置換する文字 )
COALESCEを使用して、nullだった場 ...

Scala

ビット演算子について書式

演算子例意味&a & bAND演算|a | bOR演算^a ^ bXOR演算~a ^ b補数演算<<a << b左シフト>>a >> b右 ...