My SQL Error. Can anyone help me fix this error? I'm not sure what MySQL is trying to tell me:
ERROR:
Error
Static analysis:
2 errors were found during analysis.
Unexpected beginning of statement. (near "`id`" at position 4)
Unrecognized statement type. (near "int" at position 9)
SQL query:
( `id` int(11) NOT NULL, `user_id` int(11) DEFAULT NULL, `surgeon` varchar(255) NOT NULL, `ii_address` varchar(256) NOT NULL, `ii_email` varchar(256) NOT NULL, `ii_phone` varchar(50) NOT NULL, `ii_pi_name` varchar(256) NOT NULL, `ii_pi_phone` varchar(50) NOT NULL, `ii_pi_email` varchar(256) NOT NULL, `date` varchar(255) NOT NULL, `seller` varchar(255) DEFAULT NULL, `data` longtext NOT NULL, `si` text NOT NULL, `hsi` text NOT NULL, `di` text NOT NULL, `pi` text NOT NULL, `osi` text CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL, `oi` text NOT NULL, `cai` text NOT NULL, `sign` longtext NOT NULL, `ii_pi_name2` text NOT NULL, `ii_pi_phone2` text NOT NULL, `ii_pi_email2` text NOT NULL, `ii_pi_name3` text NOT NULL, `ii_pi_phone3` text NOT NULL, `ii_pi_email3` text NOT NULL, `oi_hospitallist` text NOT NULL, `oi_unitname` text NOT NULL, `oi_unitnumber` text NOT NULL, `oi_payermix` text NOT NULL, `oi_unitnumber2_m` text NOT NULL, `oi_unitnumber2_mc` text NOT NULL, `oi_reimbursement_m` text NOT NULL, `oi_comment_mc` text NOT NULL, `oi_comment_md` text NOT NULL, `oi_unitnumber2_pi` text NOT NULL, `oi_reimbursement_pi` text NOT NULL, `oi_comment_pi` text NOT NULL, `oi_unitnumber2_pp` text NOT NULL, `oi_comment_pp` text NOT NULL, `hi_name` text NOT NULL, `hi_address` text NOT NULL, `hi_contact` text NOT NULL, `hi_email` text NOT NULL, `hi_phone` text NOT NULL, `hi_name2` text NOT NULL, `hi_address2` text NOT NULL, `hi_contact2` text NOT NULL, `hi_email2` text NOT NULL, `hi_phone2` text NOT NULL, `hi_name3` text NOT NULL, `hi_address3` text NOT NULL, `hi_contact3` text NOT NULL, `hi_email3` text NOT NULL, `hi_phone3` text NOT NULL, `di_name1` text NOT NULL, `di_contact1` text NOT NULL, `di_email1` text NOT NULL, `di_phone1` text NOT NULL, `di_name2` text NOT NULL, `di_contact2` text NOT NULL, `di_email2` text NOT NULL, `di_phone2` text NOT NULL, `di_name3` text NOT NULL, `di_contact3` text NOT NULL, `di_email3` text NOT NULL, `di_phone3` text NOT NULL, `di_name4` text NOT NULL, `di_contact4` text NOT NULL, `di_email4` text NOT NULL, `di_phone4` text NOT NULL, `di_name5` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
`surgeon` varchar(255' at line 2
My Create Table:
CREATE TABLE `data` (id INT PRIMARY KEY) ROW_FORMAT=COMPRESSED; (
`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
`surgeon` varchar(255) NOT NULL,
`ii_address` varchar(256) NOT NULL,
`ii_email` varchar(256) NOT NULL,
`ii_phone` varchar(50) NOT NULL,
`ii_pi_name` varchar(256) NOT NULL,
`ii_pi_phone` varchar(50) NOT NULL,
`ii_pi_email` varchar(256) NOT NULL,
`date` varchar(255) NOT NULL,
`seller` varchar(255) DEFAULT NULL,
`data` longtext NOT NULL,
`si` text NOT NULL,
`hsi` text NOT NULL,
`di` text NOT NULL,
`pi` text NOT NULL,
`osi` text CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL,
`oi` text NOT NULL,
`cai` text NOT NULL,
`sign` longtext NOT NULL,
`ii_pi_name2` text NOT NULL,
`ii_pi_phone2` text NOT NULL,
`ii_pi_email2` text NOT NULL,
`ii_pi_name3` text NOT NULL,
`ii_pi_phone3` text NOT NULL,
`ii_pi_email3` text NOT NULL,
`oi_hospitallist` text NOT NULL,
`oi_unitname` text NOT NULL,
`oi_unitnumber` text NOT NULL,
`oi_payermix` text NOT NULL,
`oi_unitnumber2_m` text NOT NULL,
`oi_unitnumber2_mc` text NOT NULL,
`oi_reimbursement_m` text NOT NULL,
`oi_comment_mc` text NOT NULL,
`oi_comment_md` text NOT NULL,
`oi_unitnumber2_pi` text NOT NULL,
`oi_reimbursement_pi` text NOT NULL,
`oi_comment_pi` text NOT NULL,
`oi_unitnumber2_pp` text NOT NULL,
`oi_comment_pp` text NOT NULL,
`hi_name` text NOT NULL,
`hi_address` text NOT NULL,
`hi_contact` text NOT NULL,
`hi_email` text NOT NULL,
`hi_phone` text NOT NULL,
`hi_name2` text NOT NULL,
`hi_address2` text NOT NULL,
`hi_contact2` text NOT NULL,
`hi_email2` text NOT NULL,
`hi_phone2` text NOT NULL,
`hi_name3` text NOT NULL,
`hi_address3` text NOT NULL,
`hi_contact3` text NOT NULL,
`hi_email3` text NOT NULL,
`hi_phone3` text NOT NULL,
`di_name1` text NOT NULL,
`di_contact1` text NOT NULL,
`di_email1` text NOT NULL,
`di_phone1` text NOT NULL,
`di_name2` text NOT NULL,
`di_contact2` text NOT NULL,
`di_email2` text NOT NULL,
`di_phone2` text NOT NULL,
`di_name3` text NOT NULL,
`di_contact3` text NOT NULL,
`di_email3` text NOT NULL,
`di_phone3` text NOT NULL,
`di_name4` text NOT NULL,
`di_contact4` text NOT NULL,
`di_email4` text NOT NULL,
`di_phone4` text NOT NULL,
`di_name5` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Fellow title is reserved for select members who demonstrate sustained contributions, industry leadership, and outstanding performance. We will announce the experts being inducted into the Experts Exchange Fellowship during the annual Expert Awards, but unlike other awards, Fellow is a lifelong status. This title may not be given every year if there are no obvious candidates.
The Most Valuable Expert award recognizes technology experts who passionately share their knowledge with the community, demonstrate the core values of this platform, and go the extra mile in all aspects of their contributions. This award is based off of nominations by EE users and experts. Multiple MVEs may be awarded each year.