+ 1
Is a Table like a bidimensional Array?
I am realizing now: Is a database table similar to a bidimensional Array? For example: Table [column][row] Table [column][0]=name of Column Table [0][row] = data corresponding 1st column
2 Answers
+ 4
You're correct, they're similar in form yes. In fact, it would be better for you to picture it as a table, you'll be able to locate the elements better.
0
No, It is bidimensional but unlike arrays it consists of heterogeneous values. It is more like a list of arrays.