Sign up to request clarification or add additional context in comments.
Comments
0
As far as I know, MySQL does not support sequences. These are usually used to provide incremental ids for tables. If that is your purpose, then use auto_increment:
create table t (
t_id int auto_increment primary key,
. . .
);
CREATE SEQUENCEis a command that works in almost any database engine other than the one you tagged