• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows PLX I NEED HELP PLXX u__u !!

poketebes

New Member
Joined
Jul 28, 2009
Messages
1
Reaction score
0
I HAVE THIS ERROR EN MI MY SQL

Error
consulta SQL:

DROP TABLE IF EXISTS `player_killers` DROP TABLE IF EXISTS `house_lists` ;


MySQL ha dicho:

#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 'DROP TABLE IF EXISTS `house_lists`' at line 2
 
Code:
DROP TABLE `player_killers`
Code:
CREATE TABLE `player_killers`
(
	`kill_id` INT NOT NULL,
	`player_id` INT NOT NULL,
	FOREIGN KEY (`kill_id`) REFERENCES `killers`(`id`) ON DELETE CASCADE,
	FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 
Back
Top