pues tengo estas 2 tablas
TablasCREATE TABLE IF NOT EXISTS `players` (
`id` int(7) NOT NULL AUTO_INCREMENT,
`admin` int(1) NOT NULL,
`ircnick` varchar(16) COLLATE utf8_spanish_ci NOT NULL,
`ircaddress` varchar(190) COLLATE utf8_spanish_ci NOT NULL,
`ip` varchar(16) COLLATE utf8_spanish_ci NOT NULL,
`name` varchar(25) COLLATE utf8_spanish_ci NOT NULL,
`password` varchar(16) COLLATE utf8_spanish_ci NOT NULL,
`authid` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`email` varchar(90) COLLATE utf8_spanish_ci NOT NULL,
`joindate` varchar(18) COLLATE utf8_spanish_ci NOT NULL,
`premium` int(1) NOT NULL,
`empty` varchar(120) COLLATE utf8_spanish_ci NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=44 ;
CREATE TABLE IF NOT EXISTS `points` (
`steamid` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`points` int(7) NULL,
`played` int(6) NULL,
`wins` int(5) NULL,
`lose` int(5) NULL,
`leave` int(5) NULL,
`banpoints` int(1) NULL,
`kills` int(8) NULL,
`deaths` int(8) NULL,
`planted` int(8) NULL,
`defused` int(8) NULL,
`hs` int(5) NULL,
`knife` int(8) NULL,
`7hp` int(7) NULL,
PRIMARY KEY (`steamid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
y al intentar hacer referencias no me las relaciona
sentencia q utilizo pa relacionarlasALTER TABLE players ADD INDEX (authid);
ALTER TABLE players ADD CONSTRAINT nexoA
FOREIGN KEY (authid
) REFERENCES points
(steamid
) ON DELETE CASCADE ON UPDATE CASCADE;
/* el campo authid de la tabla players se relaciona con el campo steamid de la tabla points y viseversa */
ALTER TABLE points ADD INDEX (steamid);
ALTER TABLE points ADD CONSTRAINT nexob
FOREIGN KEY (steamid
) REFERENCES players
(authid
) ON DELETE CASCADE ON UPDATE CASCADE;
al crear esas relaciones no me da error, pero cuando voy a hacer un
SELECT name, points, steamid, authid, kills, deaths FROM players, points ORDER BY points ASC;
me los muestra todos relacionados entre si
resultado]
crea 103 STEAM_0:0:13520873 STEAM_0:0:13520873 70 20 begin_of_the_skype_highlighting 13520873 70 20 end_of_the_skype_highlighting
shako 103 STEAM_0:0:13520873 STEAM_0:0:17520873 70 20
shako 113 STEAM_0:0:17520873 STEAM_0:0:17520873 70 20
crea 113 STEAM_0:0:17520873 STEAM_0:0:13520873 70 20
alguien sabe dond esta mi error?