1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
| --------------
SET AUTOCOMMIT = 0
--------------
--------------
START TRANSACTION
--------------
--------------
DROP DATABASE IF EXISTS `base`
--------------
--------------
CREATE DATABASE `base`
DEFAULT CHARACTER SET `latin1`
DEFAULT COLLATE `latin1_general_ci`
--------------
--------------
DROP TABLE IF EXISTS `test`
--------------
--------------
CREATE TABLE `test`
( `id` integer unsigned not null auto_increment primary key,
`categorie` integer unsigned not null,
`produit` varchar(255) not null,
`prix` decimal(15,2) not null
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
CREATE FUNCTION `somme`(_cat integer unsigned) RETURNS decimal(15,2)
DETERMINISTIC
LANGUAGE SQL
BEGIN
DECLARE _som DECIMAL(15,2);
SET _SOM = (select sum(prix) from `test` where categorie = _cat);
RETURN _SOM;
END
--------------
--------------
insert into `test` (`categorie`,`produit`,`prix`) values
(1, 'produit A', 10.00),
(2, 'produit B', 20.00),
(3, 'produit C', 5.50),
(1, 'produit D', 8.50),
(1, 'produit E', 3.00),
(2, 'produit F', 14.25),
(1, 'produit G', 11.50),
(2, 'produit H', 32.75),
(1, 'produit J', 17.00),
(3, 'produit J', 14.50)
--------------
--------------
select * from `test`
--------------
+----+-----------+-----------+-------+
| id | categorie | produit | prix |
+----+-----------+-----------+-------+
| 1 | 1 | produit A | 10.00 |
| 2 | 2 | produit B | 20.00 |
| 3 | 3 | produit C | 5.50 |
| 4 | 1 | produit D | 8.50 |
| 5 | 1 | produit E | 3.00 |
| 6 | 2 | produit F | 14.25 |
| 7 | 1 | produit G | 11.50 |
| 8 | 2 | produit H | 32.75 |
| 9 | 1 | produit J | 17.00 |
| 10 | 3 | produit J | 14.50 |
+----+-----------+-----------+-------+
--------------
select somme(1)
--------------
+----------+
| somme(1) |
+----------+
| 50.00 |
+----------+
--------------
select somme(2)
--------------
+----------+
| somme(2) |
+----------+
| 67.00 |
+----------+
--------------
select somme(3)
--------------
+----------+
| somme(3) |
+----------+
| 20.00 |
+----------+
--------------
COMMIT
--------------
--------------
SET AUTOCOMMIT = 1
--------------
Appuyez sur une touche pour continuer... |
Partager