How do I create a sequence in SQLITE?

I have created a table in sqlite.
There are two fields: pk_categoryid, category_name.
I want to enter only one value from the user side.
So, how do I create a sequence?
If you mean that you want the primary key to be automatically generated, then please look at AUTOINCREMENT when creating the table:

< /p>

> SQLite CREATE TABLE syntax.

I have created a table in sqlite.
There are two fields: pk_categoryid, category_name.
I want to enter only one value from the user side.
So, how do I create a sequence?

If you mean that you want the primary key to be automatically generated, then please see AUTOINCREMENT when creating the table:

> SQLite CREATE TABLE syntax.

Leave a Comment

Your email address will not be published.