MariaDB

環境
MariaDB 10.6.4
Windows10 home 64bit

SQL構文

select * from information_schema.INNODB_BUFFER_PAGE;

...

MariaDB

環境
MariaDB 10.6.4
Windows10 home 64bit

操作方法
1.新しいユーザーを作成します。

MariaDB > create user 'testuser0 ...

MariaDB

環境
MariaDB 10.6.4
Windows10 home 64bit

書式
JSON_ARRAY_APPEND(‘json’,’位置’, ...

MariaDB

環境
MariaDB 10.6.4
Windows10 home 64bit

mariadbのポート番号を調べます

MariaDB > show variables like 'port';+- ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
SQLite3

書式
1.connect(db名)
sqlite3.connect(r’パス名\test ...

Python

書式
対象文字列
最初の1文字目の位置は0です。
最初の文字から「終了位置」までの文字を返します。
使用例

# coding: utf-8str = 'テスト太郎'#終了位置2print(str) ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
SQLite3

書式
1.connect(db名)
sqlite3.connect(r’パス名\test ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2

書式
正規表現式”^ST”
先頭が「ST」の文字を指定しています。
groupメソッドは一致 ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2

操作方法
1.「ファイル(F)」->「設定(T)」をクリックします。

2.左側一覧から「プロジェクト:python ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2

書式
正規表現式”k{3}”
「k」が2回連続することを指定しています
groupメソッドは ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
SQLite3
書式
1.connect(db名)
sqlite3.connect(r’パス名\test1. ...

Python

書式
正規表現式 ]
「E」または「F」の文字を指定しています。groupメソッドは一致した文字列を返します。

使用例

# coding: utf-8import re#「E」または「F」の文字を指定 ...

Oracle 12c

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

書式
カラム名 LIKE ‘ ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
書式
正規表現式 
「B」以外の文字を指定しています。
groupメソッドは一致した文字列を返します。
使用例 ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
SQLite3

書式
1.connect(db名)
sqlite3.connect(r’パス名\test ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
書式
class 例外名(Exception):
Exceptionクラスを継承して、独自の例外を作成します。
rais ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
書式
raise 例外クラス名(引数の値)
raise 文を使って、特定の例外を発生させることができます。
使用例 ...

Python

環境
PyCharm 2021.3.3
Python 3.9.2
書式

try: 処理コードexcept 例外クラス名 : 処理コードelse: 処理コード

使用例

# coding: utf- ...