CREATE TABLEステートメントを使用してMySQLテーブルに複数の仮想GENERATEDCOLUMNSを含めるにはどうすればよいですか?
mysql> Create table profit(cost int, price int, profit int AS (price-cost), price_revised int AS (price-2)); Query OK, 0 rows affected (0.73 sec) mysql> Describe profit; +---------------+---------+------+-----+---------+-------------------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------+------+-----+---------+-------------------+ | cost | int(11) | YES | | NULL | | | price | int(11) | YES | | NULL | | | profit | int(11) | YES | | NULL | VIRTUAL GENERATED | | price_revised | int(11) | YES | | NULL | VIRTUAL GENERATED | +---------------+---------+------+-----+---------+-------------------+ 4 rows in set (0.00 sec) mysql> Insert into profit(Cost, Price) values(100,110); Query OK, 1 row affected (0.04 sec) mysql> Insert into profit(Cost, Price) values(200,220); Query OK, 1 row affected (0.04 sec) mysql> Select * from profit; +------+-------+--------+---------------+ | cost | price | profit | price_revised | +------+-------+--------+---------------+ | 100 | 110 | 10 | 108 | | 200 | 220 | 20 | 218 | +------+-------+--------+---------------+ 2 rows in set (0.00 sec)
-
複数の列を持つMySQLテーブルに条件を作成するにはどうすればよいですか?
条件については、IF()を使用してください。以下は構文です- IF(yourCondition, trueStatement,falseStatement); まずテーブルを作成しましょう- mysql> create table DemoTable612 (Number1 int,Number2 int,Score int); Query OK, 0 rows affected (0.47 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTable612 values(10,20,1000); Que
-
インデックスを使用してMySQLテーブルを作成するにはどうすればよいですか?
インデックスを使用してMySQLテーブルを作成するための構文は、次のとおりです- create table yourTableName ( yourColumnName1 dataType, yourColumnName2 dataType . . . N ); create index yourIndexName1 on(yourColumnName1 ); create index yourIndexName2 on(yourColumnName2 ); まずテーブルを作成しましょう- mysql> create table DemoTable ->