How many tables will create when we create table, what are
they?
Answers were Sorted based on User's Feedback
Answer / anand
Three tables
1. .frm(containg structure of table)
2. .MYI(contains Index)
3. .MYD(For containing data values)
Is This Answer Correct ? | 3 Yes | 3 No |
How can you make a database as your current database?
I have a table like this tblData (month int,Qty int) and i am inserting three rows in this table 1.tblData Values (1,100) 2.tblData Values (2,200) 3.tblData Values (3,300) The Result I want is the Running total of the field Qty that is 1 100 100 2 200 300 3 300 600 What is the Query for that ?
Why should I use mysql?
What is mysql_query?
How to calculate the difference between two dates?
How do I start and stop mysql on windows?
How can I create table in mysql?
What do you need to connect php to mysql?
what is database black box testing? : Mysql dba
What is difference between mysql_connect and mysql_pconnect?
What does innodb stand for?
How important is to list the column names when doing an insert?