![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Finally got the basic mysql installation solved and is up and running. Now I'm trying to figure out how to work in the workbench, which makes life a lot simpler. Creating a new database is a piece of cake. Creating a new table winds up with a syntax error. Error 1064 syntax error. Don't blame me dufus, you're the one creating the required syntax. All I did was supply a name. |
|
CREATE TABLE `a1960`.`asongs1960` ( ) DEFAULT CHARACTER SET = utf8 COLLATE = utf8_general_ci; ERROR 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 ') |
#3
| |||
| |||
|
|
richard: Finally got the basic mysql installation solved and is up and running. Now I'm trying to figure out how to work in the workbench, which makes life a lot simpler. Creating a new database is a piece of cake. Creating a new table winds up with a syntax error. Error 1064 syntax error. Don't blame me dufus, you're the one creating the required syntax. All I did was supply a name. Well, that's the problem. Tables with just a name aren't very useful. You want fields in tables. CREATE TABLE `a1960`.`asongs1960` ( ) DEFAULT CHARACTER SET = utf8 COLLATE = utf8_general_ci; ERROR 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 ') See? No fields. |
#4
| |||
| |||
|
|
On 20 Feb 2011 07:26:02 GMT, Erick T. Barkhuis wrote: See? No fields. Thanks. You'd think they'd just come right out and say "no fields present" or something. |
|
Once I put in a couple of fields, things work better. Now I'm off to conquer and rule the world! |
![]() |
| Thread Tools | |
| Display Modes | |
| |