Hello i have error i don’t know how to fix it can u help me?
SQL query:
-- --------------------------------------------------------
--
-- Table structure for table `tbadmin`
--
CREATE TABLE `tbadmin` (
`fld_id` int(10) NOT NULL,
`fld_username` varchar(30) NOT NULL,
`fld_password` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
MySQL said: Documentation
#1050 - Table 'tbadmin' already exists
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
It looks like that the table name already exists. You can do a few things:
CREATE DATABASE your_db_name
and run your import there.Let me know how it goes. Best, Bobby