What are the other commands to know the structure of table using MySQL commands except explain command?
2 7483The structure of table view buyers is as follows: +----------------+-------------+------+-----+---------+----- -----------+ | Field | Type | Null | Key | Default | Extra | +----------------+-------------+------+-----+---------+----- -----------+ | user_pri_id | int(15) | | PRI | NULL | auto_increment | | userid | varchar(10) | YES | | NULL | | +----------------+-------------+------+-----+---------+----- -----------+ the value of user_pri_id the last row 2345 then What will happen in the following conditions? Condition1: Delete all the rows and insert another row then. What is the starting value for this auto incremented field user_pri_id , Condition2: Delete the last row(having the field value 2345) and insert another row then. What is the value for this auto incremented field user_pri_id
2 4835
What is memory table?
How can you find out the version of the installed mysql?
What are the two types of queries?
How to make a copy values from one column to another in mysql?
What is localhost in mysql?
can you tell how can you display the maximum salary in sql? : Mysql dba
Is mysql a database?
What is the phantom problem?
What is striped backup
How to shut down the server with 'mysqladmin'?
How would you enter characters as hex numbers?
How to use in conditions?
How can we convert between Unix & MySQL timestamps?
How do I exit mysql?
How do you name a table?