I am trying to store long integer in table. My table schema looks like below.
CREATE TABLE t7(a long integer);
and i am inserting below value.
insert into t7(a) values(16732595907054788167);
but when i do select i am getting numeric value as below
select * from t7;
1.67325959070548e+19
And I don't want to use string or blob as data type. How can I cast numeric to long integer while selecting.