Nuestro equipo de expertos pasados varios días de trabajo y recopilar de información, hemos dado con la solución, deseamos que te sea de gran utilidad en tu plan.
Ejemplo 1: mysql crea un procedimiento almacenado
-- MySQL-- exampleDELIMITER $$ -- Changes delimiter to $$ so can use ; within the procedureCREATEPROCEDURE select_employees()BEGINselect*from employees
limit1000;-- Use the ; symbol within the procedureEND$$
DELIMITER;-- Resets the delimiter/* syntax:
DELIMITER $$ -- Changes delimiter to $$ so can use ; within the procedure
CREATE PROCEDURE (...)
BEGIN
; -- Use the ; symbol within the procedure
END$$
DELIMITER ; -- Resets the delimiter
*/
Ejemplo 2: función de creación mysql
-- MySQL-- exampleDELIMITER $$
CREATEFUNCTION f_employee_count(p_dept_no INTEGER)RETURNSINTEGERDETERMINISTICNOSQLREADSSQLDATABEGINDECLARE v_emp_count INTEGER;SELECTCOUNT(*)INTO v_emp_count
FROM EMPLOYEES E
WHERE E.DEPT_NO = p_dept_no
GROUPBY DEPARTMENT_NO;RETURN v_emp_count;END$$
DELIMITER;/* syntax:
DELIMITER $$
CREATE FUNCTION () RETURNS
DETERMINISTIC NO SQL READS SQL DATA
BEGIN
DECLARE
;
RETURN ;
END$$
DELIMITER ;
*/
Aquí puedes ver las reseñas y valoraciones de los usuarios
¡Haz clic para puntuar esta entrada!
(Votos: 2 Promedio: 4)