SA-MP Forums Archive
[Ajuda] Table й criada diferente. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Table й criada diferente. (/showthread.php?tid=663469)



Table й criada diferente. - Luiiiz - 02.02.2019

Opa, tava estudando MySQL e decidi criar mais de 1 table, sendo elas: "Banidos" e "Contas".
Estou com um pequeno "problema" que ao inserir coisas na table "Banidos", ela fica diferente das coisas inseridas em "Contas".
Prints:
Como fica a "Contas": https://i.imgur.com/50XWIPM.png
Como fica a "Banidos": https://i.imgur.com/AyVy3TN.png

Eu gostaria de achar um jeito de unificar elas porque para mexer pelo phpmyadmin fazendo remoзхes de rows й mais fбcil do jeito que й na "Contas" como na "Banidos".

Code dos inserts:
PHP код:
mysql_format(IDConexaoquerysizeof(query), "INSERT INTO `Contas`(`Nome`, `Senha`) VALUES ('%s', '%s')"Jogador[playerid][Nome], inputtext); 
PHP код:
mysql_format(IDConexaoquerysizeof(query), "INSERT INTO `Banidos`(`Nome`, `Banido por`, `Motivo ban`) VALUES ('%s', '%s', '%s')"Jogador[id][Nome], Jogador[playerid][Nome], motivo); 
Code de como elas sгo criadas:
PHP код:
mysql_query(IDConexao"CREATE TABLE IF NOT EXISTS `Contas`(`ID` int AUTO_INCREMENT PRIMARY KEY, `Nome` varchar(24) NOT NULL, `Senha` varchar(17) NOT NULL, `Level` int(20) NOT NULL, `Skin` int(10) NOT NULL, `Admin` int(10) NOT NULL, `Dinheiro` int(20) NOT NULL, `Sexo` int(10) NOT NULL, `PosX` float(20) NOT NULL, `PosY` float(20) NOT NULL, `PosZ` float(20) NOT NULL)"false);
mysql_query(IDConexao"CREATE TABLE IF NOT EXISTS `Banidos`(`Nome` varchar(24) NOT NULL, `Banido por` varchar(24) NOT NULL, `Motivo ban` varchar(30))"false); 



Re: Table й criada diferente. - Bruno13 - 02.02.2019

Quando uma tabela se torna inalterбvel pela interface do phpMyAdmin й porque ela estб provavelmente sendo usada como foreign key.

Se vocк quer inserir as colunas da tabela Banidos em Contas, й sу usar ALTER TABLE: https://www.w3schools.com/sql/sql_alter.asp