Table de création de limites entières SQL

create table some_table
(
   phone_number integer not null check (phone_number between 0 and 9999999999)
);
Hemnyos