I want to insert data into Oracle about ‘Acceptable ambient temperature range’. I can do it this way – create two fields:
Acceptable minimum ambient temperature and Acceptable maximum ambient temperature
But I’m interested is it possible to store the two values into one table row? Is there some appropriate table row type that can be used?
I want to insert data into Oracle about ‘Acceptable ambient temperature range’. I can
Share
Of course it is possible to “store the two values into one table row”.
Database relational management systems are all about storing multiple values per row!
One appropriate row “type” would be
(MIN_AAT integer, MAX_AAT integer)Perhaps you think about storing both values into a single column?