MySQL 8.0 リファレンスマニュアル検索

phrase: max: clip:
target: order:
Results of 1 - 2 of about 2 for shirt (0.006 sec.)
MySQL :: MySQL 8.0 リファレンスマニュアル :: 3.6.6 外部キーの使用 11228
Skip to Main Content . MySQL 8.0 リファレンスマニュアル 序文と法的通知 一般情報 MySQL のインスト ... HAR(60) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE shirt ( id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, st ... yle ENUM('t-shirt', 'polo', 'dress') NOT NULL, color ENUM('red', 'bl ... z'); SELECT @last := LAST_INSERT_ID(); INSERT INTO shirt VALUES (NULL, 'polo', 'blue', @last), (NULL, 'dres ... s', 'white', @last), (NULL, 't-shirt', 'blue', @last); INSERT INTO person VALUES (NULL, ...
https://man.plustar.jp/mysql/example-foreign-keys.html - [similar]
MySQL :: MySQL 8.0 リファレンスマニュアル :: 11.3.5 ENUM 型 7485
Skip to Main Content . MySQL 8.0 リファレンスマニュアル 序文と法的通知 一般情報 MySQL のインスト ... カラムを持つテーブルを作成できます。 CREATE TABLE shirts ( name VARCHAR(40), size ENUM('x-small', 'small', ... 'medium', 'large', 'x-large') ); INSERT INTO shirts (name, size) VALUES ('dress shirt','large'), ('t- ... shirt','medium'), ('polo shirt','small'); SELECT name, size FROM shirts WHERE siz ... --------+ | name | size | +---------+--------+ | t-shirt | medium | +---------+--------+ UPDATE shirts SET ...
https://man.plustar.jp/mysql/enum.html - [similar]
PREV 1 NEXT