sql int vs integer

Solutions on MaxInterview for sql int vs integer by the best coders in the world

showing results for - "sql int vs integer"
Allison
14 Apr 2019
1INT is a synonym for INTEGER
2
3SQL defines distinct data types named by the following keywords: 
4CHARACTER, CHARACTER VARYING, BIT, BIT VARYING, NUMERIC, DECIMAL, 
5INTEGER, SMALLINT, FLOAT, REAL, DOUBLE PRECISION, DATE, TIME, TIMESTAMP, 
6and INTERVAL.