Skip to content

Commit

Permalink
inserindo dados no banco
Browse files Browse the repository at this point in the history
  • Loading branch information
LeandroLS committed May 16, 2018
1 parent 48f79cc commit 79bb642
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions src/php_test_skill.sql → php_test_skill.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- MySQL dump 10.13 Distrib 5.7.22, for Linux (x86_64)
-- MySQL dump 10.13 Distrib 5.7.20, for Linux (x86_64)
--
-- Host: localhost Database: php_test_skill
-- ------------------------------------------------------
Expand All @@ -16,50 +16,51 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `questions`
-- Table structure for table `answers`
--

DROP TABLE IF EXISTS `questions`;
DROP TABLE IF EXISTS `answers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `questions` (
`question_id` int(11) NOT NULL AUTO_INCREMENT,
`questions_description` varchar(255) NOT NULL,
PRIMARY KEY (`question_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `answers` (
`answers_id` int(11) NOT NULL AUTO_INCREMENT,
`question_id` int(2) NOT NULL,
`correct_answer` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`answers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `questions`
-- Dumping data for table `answers`
--

LOCK TABLES `questions` WRITE;
/*!40000 ALTER TABLE `questions` DISABLE KEYS */;
/*!40000 ALTER TABLE `questions` ENABLE KEYS */;
LOCK TABLES `answers` WRITE;
/*!40000 ALTER TABLE `answers` DISABLE KEYS */;
/*!40000 ALTER TABLE `answers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `answers`
-- Table structure for table `questions`
--

DROP TABLE IF EXISTS `answers`;
DROP TABLE IF EXISTS `questions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `answers` (
`answers_id` int(11) NOT NULL AUTO_INCREMENT,
`question_id` int(2) NOT NULL,
`correct_answer` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`answers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `questions` (
`question_id` int(11) NOT NULL AUTO_INCREMENT,
`questions_description` varchar(255) NOT NULL,
PRIMARY KEY (`question_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `answers`
-- Dumping data for table `questions`
--

LOCK TABLES `answers` WRITE;
/*!40000 ALTER TABLE `answers` DISABLE KEYS */;
/*!40000 ALTER TABLE `answers` ENABLE KEYS */;
LOCK TABLES `questions` WRITE;
/*!40000 ALTER TABLE `questions` DISABLE KEYS */;
INSERT INTO `questions` VALUES (1,'Detecta dado do tipo ímpar ?'),(2,'Quais dos seguintes são valores flutuantes válidos?'),(3,'Em PHP string são ?'),(4,'Qual dos seguintes métodos de delimitação é conhecido como string Interpolation'),(5,'Quais tipos de dados são tratados como arrays ?'),(6,'Quais dos seguintes são tipos de dados compostos ?'),(7,'Operador de conversção(casting) introduzido no PHP 6 é?'),(8,'Ao definir o identificador em PHP, você deve se lembrar disso?'),(9,'Identifique o identificador inválido?'),(10,'Qual das seguintes atribuições de variáveis ​​é a atribuição por valor no PHP?'),(11,'Identificar o escopo da variável que não é suportado pelo PHP?'),(12,'A saída do script abaixo seria\n\n$ somerar = 15;\n\nfunção addit () {\n\nGLOBAL $ somevar;\n\n$ somerar ++;\n\necho \"somerar é $ somerar\";\n\n}\naddit ();'),(13,'Escopo variável no qual uma variável não perde seu valor quando a função existe e usa esse valor se a função for chamada novamente é?'),(14,'O operador de associação à esquerda% é usado em PHP para?'),(15,'O operador de ponto associativo esquerdo (.) É usado em PHP para?'),(16,'Qual é a falsa declaração?'),(17,'Qual das seguintes funções requer que o allow-url-fopen esteja habilitado?'),(18,'Qual função inclui o arquivo especificado até mesmo a instrução é avaliada como false em qual bloco a função é colocada?'),(19,'Em caso de falha de qual declaração a execução do script para de exibir mensagem de erro / aviso?'),(20,'Rastrear a função que continua a execução do script, mesmo se a inclusão do arquivo falhar');
/*!40000 ALTER TABLE `questions` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

Expand All @@ -71,4 +72,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2018-05-15 21:18:05
-- Dump completed on 2018-05-16 20:29:00

0 comments on commit 79bb642

Please sign in to comment.