Thursday, March 07, 2013
mySQL Store procedures
CREATE DEFINER = 'root'@'%' PROCEDURE `queryf2`(
IN id varchar(8)
)
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY DEFINER
COMMENT ''
BEGIN
START TRANSACTION;
SELECT * FROM PRODUCTOS_STOCK ps where ps.IdSucursal=id;
COMMIT;
END;
references:
[1] Stored Procedure that returns random rows from a table
http://www.it-iss.com/mysql/mysql-stored-procedure-that-returns-random-rows-from-a-table/
Subscribe to:
Post Comments (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
PostgreSQL json fields
select name->'es_PE',* from product_template where name->>'es_PE' like '%MEGACI%' References: [1] https:/...
No comments:
Post a Comment