i can't figure out why this isn't working. using mysql version 5.0.91-log. and phpMyAdmin
INSERT INTO 'sequences'(
'key', 'author', 'tlength', 'progress', 'time')
VALUES (
NULL , '00000', 10, 1, NULL
)
gets the following error.
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 ''sequences'( 'key', 'author', 'tlength', 'progress', 'time') VALUES ( NULL , ' at line 1
here's the table (name, type, attributes, null, default, extra)
key int(11) UNSIGNED No auto_increment author char(20) No tlength tinyint(3) UNSIGNED No progress tinyint(4) UNSIGNED No 0 time timestamp Yes CURRENT_TIMESTAMP
i've tried many combinations of the above query with/without quotes and other variations. any ideas?