Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problems creating a table

Status
Not open for further replies.

krash

ISP
Jun 2, 1999
1
US
I am getting an error 1064 every time I try to create a table. I am new to MYSQL but have used oracle quite a bit. I've read thru the manual and don't think I have the syntax wrong but nevertheless it won't seem to work. I must have a setup problem or something. I am typing:<br>
<br>
create table table_name (column varcharXX);<br>
<br>
shouldn't this work?<br>
<br>
Erik craddock
 
You should be doing:<br>
<br>
create table my_table (my_column varchar(40));<br>
<br>
You've only left out the parenthesis.<br>
<br>
<br>
<br>

 
maybe you have wrong in this line

create table my_table (my_column varchar(40));

=>this part

as you see above line wrong that between my_table... amony

(my_column....!

only You must have set it up one's empty space!

on the other hand .... You don't have merge that's between
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top