DELIMITER $$
DROP PROCEDURE IF EXISTS `livraria`.`spAssuntoLivro` $$
CREATE PROCEDURE `livraria`.`spAssuntoLivro` (in nom varchar(30),out ass varchar(30))
BEGIN
select assunto.descricao into ass from assunto inner join livro on assunto.ID_Assunto=livro.ID_Assunto where livro.titulo = nom ;
END $$
DELIMITER ;
Comandos git do dia a dia
Ĉ¿ #Criando um projeto do zero echo "# UBBOAT_App" >> README.md git init git add README.md git commit -m "first commi...
-
Ĉ¿ RESUMO ORACLE FUNÇÕES DE LINHA • FUNÇÕES DE CARACTERES Ex. 1) LOWER (cadeia) – Converte caracteres alfabéticos em letras minúscul...
-
Ĉ¿ Vou falar um pouco sobre algumas funções de data que podem ser utilizadas no Oracle. O Oracle tem muitas funções para trabalhar com d...
-
Ĉ¿ $peso = 60; $altura = 1.75; $imc = $peso / ($altura * $altura); $total = intval($imc); echo $total; ?>