How to Limit integer digits in a table in SQLite

1.6k Views Asked by At

How to Limit integer digits in a table in SQLite in a programatical way in ios?

Eg: "CREATE TABLE IF NOT EXISTS TIMINGS (ID INTEGER PRIMARY KEY AUTOINCREMENT, Phone no INT (5), TIMING TEXT)";

we have to limit the phone no to 5 digits.

It is the right way or wrong way ????

Thanks in Advance.

1

There are 1 best solutions below

3
On

One way you could do this with a check constraint. See the documentation here.

The particular syntax would be something like:

create table . . .
    check (phonenum between 0 and 99999);

Alternatively, just make the phonenum a five character field -- you then cannot store more than five characters.