On Thu, Oct 11, 2012 at 12:56 PM, Scott Marlowe <scott.marlowe@xxxxxxxxx> wrote:
With this constraint, whether the storage space requirement would reduce?
OR
Is it just for validation of data?
--- Vineet
Can't you just add this to your create table:
, check (colname>0 and colname < 32768));
CREATE TABLE tablename (
colname SERIAL
);
With this constraint, whether the storage space requirement would reduce?
OR
Is it just for validation of data?
--- Vineet