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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
| --------------
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 `n_cat`
--------------
--------------
CREATE TABLE `n_cat`
( `id` integer unsigned not null auto_increment primary key,
`name` varchar(255) not null
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
insert into `n_cat` (`name`) values
('un'),('deux'),('trois'),('quatre'),('cinq')
--------------
--------------
select * from n_cat
--------------
+----+--------+
| id | name |
+----+--------+
| 1 | un |
| 2 | deux |
| 3 | trois |
| 4 | quatre |
| 5 | cinq |
+----+--------+
--------------
DROP TABLE IF EXISTS `news`
--------------
--------------
CREATE TABLE `news`
( `id` integer unsigned not null auto_increment primary key,
`title` varchar(255) not null,
`image` varchar(255) not null,
`cat` integer unsigned not null,
CONSTRAINT `FK_NEWS_CAT` FOREIGN KEY (`cat`) REFERENCES `n_cat` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
insert into `news` (`title`,`image`,`cat`) values
('titre 01', 'image 01', 1),
('titre 02', 'image 02', 5),
('titre 03', 'image 03', 1),
('titre 04', 'image 04', 3),
('titre 05', 'image 05', 1),
('titre 06', 'image 06', 3),
('titre 07', 'image 07', 5),
('titre 08', 'image 08', 3),
('titre 09', 'image 09', 5),
('titre 10', 'image 10', 1)
--------------
--------------
select * from news
--------------
+----+----------+----------+-----+
| id | title | image | cat |
+----+----------+----------+-----+
| 1 | titre 01 | image 01 | 1 |
| 2 | titre 02 | image 02 | 5 |
| 3 | titre 03 | image 03 | 1 |
| 4 | titre 04 | image 04 | 3 |
| 5 | titre 05 | image 05 | 1 |
| 6 | titre 06 | image 06 | 3 |
| 7 | titre 07 | image 07 | 5 |
| 8 | titre 08 | image 08 | 3 |
| 9 | titre 09 | image 09 | 5 |
| 10 | titre 10 | image 10 | 1 |
+----+----------+----------+-----+
--------------
select *
from n_cat as t1
left outer join news as t2
on t2.cat = t1.id
--------------
+----+--------+------+----------+----------+------+
| id | name | id | title | image | cat |
+----+--------+------+----------+----------+------+
| 1 | un | 1 | titre 01 | image 01 | 1 |
| 1 | un | 3 | titre 03 | image 03 | 1 |
| 1 | un | 5 | titre 05 | image 05 | 1 |
| 1 | un | 10 | titre 10 | image 10 | 1 |
| 2 | deux | NULL | NULL | NULL | NULL |
| 3 | trois | 4 | titre 04 | image 04 | 3 |
| 3 | trois | 6 | titre 06 | image 06 | 3 |
| 3 | trois | 8 | titre 08 | image 08 | 3 |
| 4 | quatre | NULL | NULL | NULL | NULL |
| 5 | cinq | 2 | titre 02 | image 02 | 5 |
| 5 | cinq | 7 | titre 07 | image 07 | 5 |
| 5 | cinq | 9 | titre 09 | image 09 | 5 |
+----+--------+------+----------+----------+------+
--------------
select t1.id, coalesce(count(t2.cat), 0) as qte
from n_cat as t1
left outer join news as t2
on t2.cat = t1.id
group by t1.id
--------------
+----+-----+
| id | qte |
+----+-----+
| 1 | 4 |
| 2 | 0 |
| 3 | 3 |
| 4 | 0 |
| 5 | 3 |
+----+-----+
--------------
COMMIT
--------------
--------------
SET AUTOCOMMIT = 1
--------------
Appuyez sur une touche pour continuer... |
Partager