+ 2
Can I store 3 data/records in 1 field?
Can I store/display 3 data in 1 table field in Java NetBeans? Can I display 3 data in 1 column? For example, in the package column there are 3 data (package name, image, and package code) If can, how can I display it? Only displaying it
1 Antwort
+ 5
You can display it for example in 3D table
Three dimensional array:
int[][][] threeD_arr = new int[10][20][30];