What are the other commands to know the structure of table using MySQL commands except explain command?
2 7447The 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 4807
Is mysql easy to learn?
Can mongodb replace mysql?
What is the limitation of mysql?
What is clob datatype?
What is the current root password of mysql?
Does mysql automatically index foreign keys?
How do you backup a database in mysql?
How to find the unique values if the value in the column is repeated?
Where’s database data actually stored?
What is triggers?
Can we store files in mysql?
Can we rollback truncate in mysql?
What is a mysql view?
What is auto increment in mysql?
How many sql ddl commands are supported by 'mysql'?