answersLogoWhite

0


Best Answer

main

User Avatar

Anonymous

Lvl 1
3y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A Lists and tables of values can be stored in?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are tables of logic?

A table of logic, or truth table, lists the possible combination of truth values for boolean (logical, two-valued) variables.


What are the Building blocks of a database?

Every database should contains values/datas represented in records(rows) and fields(columns). And records and fields stored in a table. So the main building blocks of a database is Table.


Which is the lowest level of a database where everything is stored?

Tables


What objects does Access store records?

Records are stored in tables.


What is each row called in a database?

In database the data is stored in tables called database tables. These tables have rows and columns. Each row is called a tuple.


How to Sort values in ascending order in java?

// If your values are stored in an array... Arrays.sort(valuesArray); // If they're stored in a List... Collections.sort(valuesList);


How are master lists stored in word 2010?

In XML format.


What is the difference between database and datastore?

It is a collection tables that is stored in a database


How is a Database organised?

A database contains forms and reports stored in tables


What correctly lists the possible values for if n equals 3?

Since there are no lists following, the answer must be "none of them!"


Roman civil law was written down on Tables?

Yes, but don't be confused by the word "tables" . Tables is an archaic word for columns or lists of things. (remember the old multiplication tables?) It is seldom used anymore except in science.


How to insert values in to a table in SQL?

SELECT columns FROM tables INTO tablename - will create and insert values INSERT INTO table SELECT columns FROM tables - will insert from one or more tables into a table INSERT (columns) INTO table VALUES (literals) - will insert literal values into row in a table