The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
SQL error check
i was told to run this query
[sql]CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED DEFAULT '0' NOT NULL, `alias` VARCHAR(50) NOT NULL ); [/sql] and I got [sql]Database error in vBulletin Control Panel 2.2.6: Invalid SQL: CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED DEFAULT '0' NOT NULL, `alias` VARCHAR(50) NOT NULL ); mysql error: You have an error in your SQL syntax near '; ' at line 1 mysql error number: 1064[/sql] I was wondering if anyone could tell me what's wrong with the query or something, it would be of great help =) |
#2
|
|||
|
|||
I think the DEFAULT clause must come after NOT NULL.
|
#3
|
||||
|
||||
example? sorry, I am very illiterate
|
#4
|
|||
|
|||
NOT NULL DEFAULT 0 rather than DEFAULT 0 NOT NULL.
|
#5
|
||||
|
||||
ok i ran
[sql]CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0' , `alias` VARCHAR(50) NOT NULL ); [/sql] and got... [sql]Database error in vBulletin Control Panel 2.2.6: Invalid SQL: CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0' , `alias` VARCHAR(50) NOT NULL ); mysql error: You have an error in your SQL syntax near '; ' at line 1 mysql error number: 1064[/sql] |
#6
|
|||
|
|||
You didn't specify a default for the second column (alias).
|
#7
|
||||
|
||||
alright im really illiterate, please forgive me filburt1....least i'm not PMing you XD!
anyway... i ran... [sql]CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0' , `alias` VARCHAR(50) NOT NULL DEFAULT '0' ); [/sql] and got... [sql]Database error in vBulletin Control Panel 2.2.6: Invalid SQL: CREATE TABLE `useralias` ( `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0' , `alias` VARCHAR(50) NOT NULL DEFAULT '0' ); mysql error: You have an error in your SQL syntax near '; ' at line 1 mysql error number: 1064[/sql] *dies* also, i tried putting the DEFAULT 0 befor NOT NULL in both instances and still no luck :bunny: |
#8
|
||||
|
||||
remove the ; at the end of the query
|
#9
|
||||
|
||||
jeeze i am an idiot...thanks xenon
|
#10
|
||||
|
||||
*gg*
you're welcome |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|