What are the other commands to know the structure of table using MySQL commands except explain command?
2 7561The 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 4938
What can I do with mysql?
How to enter Characters as HEX Numbers?
Do I need to pay for mysql?
Why to use char instead of varchar in the database?
What are the differences between a primary key and foreign key?
Is mariadb better than mysql?
How do I edit a stored procedure in mysql?
How do I grant privileges to a user in mysql phpmyadmin?
In how many ways we can retrieve data in the result set of mysql using php?
How do I get a list of table names in mysql?
How to convert character strings to numeric values?
How to connect html form to mysql database using php?
How can I connect mysql database?
What data structure does mysql use?
What is pdo in php mysql?