You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create my table on my Yahoo web host and when I try and run
CREATE TABLE audit (
modified_by_ip VARCHAR(39) NOT NULL DEFAULT '',
modified_by_user VARCHAR(50) NOT NULL DEFAULT '',
modified_when BIGINT(14) NOT NULL,
modified_from BIGINT(14) NOT NULL,
modified_to BIGINT(14) NOT NULL,
modified_why VARCHAR(250) NOT NULL DEFAULT '',
user_modified VARCHAR(50) NOT NULL DEFAULT '',
PRIMARY KEY (modified_when),
UNIQUE KEY modified_when (modified_when)
)
ENGINE =MyISAM;
I get and error mesage, "Unclosed quote" and #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 ''',
modified_by_user VARCHAR(50) NOT NULL DEFAULT '',
modified_when ' at line 2
The text was updated successfully, but these errors were encountered:
I am trying to create my table on my Yahoo web host and when I try and run
I get and error mesage, "Unclosed quote" and #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 ''',
modified_by_user VARCHAR(50) NOT NULL DEFAULT '',
modified_when ' at line 2
The text was updated successfully, but these errors were encountered: