File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ The `CREATE` statement is executed via the `execute` remote method of the client
263263// Create the ‘Students’ table with the ‘id’, ’name’, and ’age’ fields.
264264sql:ExecutionResult result =
265265 check dbClient->execute(`CREATE TABLE student (
266- id INT AUTO_INCREMENT ,
266+ id INT SERIAL ,
267267 age INT,
268268 name VARCHAR(255),
269269 PRIMARY KEY (id)
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ The `CREATE` statement is executed via the `execute` remote method of the client
255255// Create the ‘Students’ table with the ‘id’, ’name’, and ’age’ fields.
256256sql:ExecutionResult result =
257257 check dbClient->execute(`CREATE TABLE student (
258- id INT AUTO_INCREMENT ,
258+ id INT SERIAL ,
259259 age INT,
260260 name VARCHAR(255),
261261 PRIMARY KEY (id)
You can’t perform that action at this time.
0 commit comments