I had a question related to phpmyadmin. I have a table with the following criteria:
CREATE TABLE IF NOT EXISTS `client_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`client_name` varchar(120) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
I have inserted some test values to the above created table.
Now how I do empty the all the table values in the above table such that the next time I insert the values ,the autoincrement for id should start from 1?
Never mind. I learned to do it the simple way in phpmyadmin. Just go to Operations and click on Empty(Truncate) Table.