CREATE TABLE test_t2 (pk INT PRIMARY KEY, label VARCHAR(10), amount DOUBLE, created DATETIME); INSERT INTO test_t1 (id, name, score) VALUES (1, 'Alice', 85); INSERT ...
description Use ALTER TABLE column_definition syntax to specify the properties of a column that are added to a table. The data type for the column that is added and the schema to which it belongs.