|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
CREATE TABLE SQL_Table_001 (ID int, Subject varchar(255), Object varchar(255), Category varchar(255) ); INSERT INTO SQL_Table_001 (Subject, Object, Category) VALUES ('algebraic geometry', 'regular (polynomial) functions', 'algebraic varieties') ('topology', 'continuous functions', 'topological spaces') ('differential topology', 'differentiable functions', 'differentiable manifolds') ('complex analysis', 'analytic (power series) functions', 'complex manifolds'); |
|
1 2 3 4 5 6 7 8 9 10 |
Output. +------+-------------------------+-------------------------------------+----------------------------+ | ID | Subject | Object | Category | +------+-------------------------+-------------------------------------+----------------------------+ | 1 | algebraic geometry | regular (polynomial) functions | algebraic varieties | | 2 | topology | continuous functions | topological spaces | | 3 | differential topology | differentiable functions | differentiable manifolds | | 4 | complex analysis | analytic (power series) functions | complex manifolds | +------+-------------------------+-------------------------------------+----------------------------+ (J.S. Milne on Algebraic Geometry (2017), pg. 7) |
