设置此/下一个auto_increment值的列值

时间:2015-12-11 18:04:51

标签: mysql sql mariadb

有没有办法完成下面的sql结果作为一个班轮。

null

是的,我知道另一种方式是

create table test( id int not null primary key auto_increment, name char(10));

insert into test (name) values ('voda'+ this_value_of_id);

// so select would return
MariaDB [testdb]> select * from test;
+----+------+
| id | name |
+----+------+
|  1 | foo1 |
+----+------+

1 个答案:

答案 0 :(得分:2)

选项或方法可以通过Virtual (Computed) Columns

示例:

{{1}}