answersLogoWhite

0


Best Answer

Data fields

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the lowest level of data in MySQL?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many data types supported by MySQL?

Data types supported by MySQL are date and time data, numeric data, and byte data. Spatial data is another type supported by MySQL which includes the use of spatial extensions.


What is granularity in sql database?

lowest level of data


What is an API Is MySQL an API?

MySQL is not an API MySQL is a database where you store data. An API is how you request information from another website.


The lowest level of abstraction which describes how the data are actually are stored is called?

The machine level.


How do you install mysql data base in fedora 14?

yum install mysql yum install mysqlserver


How do you copy a database of mysql in wamp server from one computer to another?

You have several options: * copy the database files from mysql/data/<database_name> to a new mysql Installation * use mysqldump utility to export the data from your database and load it into the new mysql installation * setup replication


What is MySQL insert command?

The INSERT command in MySQL allows you to enter a new row of data to a table in your database.


What is MySQL Data Archiving?

With MySQL data archiving create and deploy effective and consistent policies for managing, securing and storing data from a single console. It helps relocate 50% of the inactive data from your production database to a secure online data archive.


What type of job does data modeling?

One type of job that does data modeling involves web design and creating MySQL databases. To create a MySQL database one must have knowledge in data modeling.


How do you retrieve 10 records from table in mysql?

For work with mysql database make use of software below to open/read/scan/export-import mysql data


How do you migrate MySQL 4.0 to MySQL 5.0?

IIRC mysql5 supports import of mysql4 data and structures natively (you can use mysql4 compatability when exporting sql data from phpmyadmin)


How do you retrieve data from one MySQL table and create another MySQL table with the same data in it using PHP?

Execute a SELECT INTO statement on the mysql database: INSERT INTO destination_table (id, first_name, last_name) SELECT id, first_name, last_name from source_table;