初級エンジニア向けのSQLチートシートです。SQLで迷った時にご活用ください! -- テーブルの作成 CREATE TABLE テーブル名 ( 列名1 データ型 制約, 列名2 データ型 制約, ... ); -- テーブル構造の確認 DESCRIBE テーブル名; -- MySQL SHOW COLUMNS FROM テーブル名; -- MySQL, MariaDB ...
operand is one of the following: constant is a number or a quoted character string (or other special notation) that indicates a fixed value. Constants are also called literals. Constants are described ...