PostgreSQL

構文
CREATE INDEX ON table_name
( column_name )

使用例
1.テーブルの作成
postgres=# create table cftschem ...

PostgreSQL

1.データベースに接続

>psql -U cft055 -d postgresユーザ cft055 のパスワード:test123psql (9.6.5)"help" でヘルプを表示します.

2.接続用パスワードを変更

PostgreSQL

1.superuser権限を指定
postgres=# create role cft04 with superuser;
CREATE ROLE

postgres-# \du cft04 ロール一覧 ロール名 ...

PostgreSQL

構文
create role ロール名 with option
option:superuser、login、admin等

使用例
1.ロールを作成
postgres=# create ro ...

PostgreSQL

構文
CREATE SCHEMA スキーマ名

使用例
1.現在のスキーマを確認
>psql -U postgres
ユーザ postgres のパスワード:
psql (9.6 ...

SQLite

書式
create table テーブル名(カラム名 データ型 UNIQUE,xxx)

使用例
テーブルを作成
sqlite> create table sttutbl(uid integer ...

SQLite

書式
CREATE TABLE テーブル名(項目名 NOT NULL, xxx);

使用例

1.テーブルを作成

sqlite> create table student(name text ...

SQLite

構文
CREATE TABLE テーブル名(カラム名1 データ型,xxx)
使用例1

create table emptbl(empid integer,empname text,depname text); ...

SQLite

操作方法
1..showでデータベースの情報を表示

C:\sqlite\sqlite3>sqlite3 arkgame.sqlite3SQLite version 3.36.0 2021-06-18 18:36:3 ...

SQLite

書式
sqlite3 データベース名

操作方法
1.データベース名を作成

C:\sqlite\sqlite3>sqlite3 arkgame.sqlite3SQLite version 3.36 ...

CSS

説明
XMLHttpRequest.readyState プロパティは XMLHttpRequest クライアントの状態を返します。
0: リクエストが初期化されない
1: サーバー接続が確立
2: リ ...

Spring Boot

書式
WebMvcConfigurer.addInterceptors(InterceptorRegistry registry)
コントローラー メソッド呼び出しとリソースハンドラー リクエストの前後処理用に Spr ...

Groovy

書式
this.メンバー変数 =値

使用例

class Arkgame {//変数の宣言 int age =456;//メソッドを定義 public int getAge() {//thisキーワードを使用 ...

Groovy

書式
map変数名.each{ key,value -> println “キー: “+ key + ” 値: ” + value }

使用例

class ...

Groovy

書式
リスト名.each { 変数名 -> println 変数名}
使用例

class Arkgame { static void main(String//暗黙の変数itを使用 cftLst.each{ ...

Groovy

書式
static int 変数名
使用例

class Arkgame {//external変数の宣言 static int age = 56;//メソッドを定義 public static int getAg ...

Groovy

書式
クラス名 インスタンス名 = new クラス名();
インスタンス名.メソット名(引数)
使用例

//クラスArkgameの定義class Arkgame {//変数の宣言 int age;//ge ...

Groovy

書式
static 戻り値の型 メソッド名(引数1,引数2,…)

使用例

class Example { static int sumFunc(int x, int y=3, int z) { i ...