What are the other commands to know the structure of table using MySQL commands except explain command?
2 7467The 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 4821
What does innodb stand for?
What are slow queries?
What is difference between mysql and mysqli?
What is longblob?
How do I create a mysql database?
What is different between sql and mysql?
What is bdb (berkeleydb)?
What is the limit of mysql database?
How do I disable mysql?
How to show all records starting with the letters 'sonia' and the phone number '9876543210'
How do you connect MySQL database with PHP?
What is difference between mysql_connect and mysql_pconnect?
How do I switch users in mysql?
What is current version of mysql?
can you tell how can you display the maximum salary in sql? : Mysql dba