yurino-sakamoto / portfolio

0 stars 0 forks source link

【バックエンド・データ管理】SQL #14

Open yurino-sakamoto opened 4 years ago

yurino-sakamoto commented 4 years ago

・Structured Query Language ・世界でもっとも利用されている「データベース管理システム」

参考 https://www.sejuku.net/blog/9021

yurino-sakamoto commented 4 years ago

My SQL環境構築

①Dockerのインストール ②Sequel Proインストール ③Docker上でmysqlを動かす

yurino-sakamoto commented 4 years ago

noSQL

https://aws.amazon.com/jp/nosql/

yurino-sakamoto commented 4 years ago

Order by のasc desc https://mgate.info/computer/software/msoffice/access/456/

yurino-sakamoto commented 4 years ago

数字の型

bigint -2^63 (-9,223,372,036,854,775,808) ~ 2^63-1 (9,223,372,036,854,775,807) 8 バイト int -2^31 (-2,147,483,648) ~ 2^31-1 (2,147,483,647) 4 バイト smallint -2^15 (-32,768) ~ 2^15-1 (32,767) 2 バイト tinyint 0 ~ 255

https://docs.microsoft.com/ja-jp/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql?view=sql-server-ver15

yurino-sakamoto commented 4 years ago

データベースの接続エラー対処を考える

トランザクションマネージャー

@transactionalを考える

複合ユニーク