<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Séance 24/03 + 26/03  by Lhoumeau maxime</title>
      <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0</link>
      <description>TD BDD SEE 3106 - 3108</description>
      <language>en-us</language>
      <pubDate>2020-03-24 16:52:19 UTC</pubDate>
      <lastBuildDate>2023-04-05 10:16:19 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4fd.png</url>
      </image>
      <item>
         <title>Correction de l&#39;exercice TP Films</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473157849</link>
         <description><![CDATA[<div>Rappel de la base:<br><strong> Film (nfilm, titreOrig, genre, dir) <br> Personne (npers, nom) <br> DVD (ndvd, type, dispo, nfilm) </strong><br><br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/408747296/09a9e7375d50b506e9025edc2de98a0b/TP_Films___SQL_23_mars_enonce.pdf" />
         <pubDate>2020-03-24 16:54:43 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473157849</guid>
      </item>
      <item>
         <title>Correction Question n°4</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473185250</link>
         <description><![CDATA[<div>SELECT DISTINCT type FROM DVD</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:07:13 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473185250</guid>
      </item>
      <item>
         <title>TP4 corrigé n2</title>
         <author>felixjoguet</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473221219</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/492785834/3d7276e0026febca6b24f5f7a951aee7/TP4_corrige_.pdf" />
         <pubDate>2020-03-24 17:24:23 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473221219</guid>
      </item>
      <item>
         <title>Corrigé Question n°6</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473229376</link>
         <description><![CDATA[<div>SELECT titreOrig <br>FROM Film <br>WHERE titreOrig LIKE '%Potter%' ;<br><br>'Potter%' = commence par 'Potter' / '%Potter' = fini par 'Potter' / '%Potter%' = contient </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:28:24 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473229376</guid>
      </item>
      <item>
         <title>Question 7</title>
         <author>felixjoguet</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473236605</link>
         <description><![CDATA[<div>SELECT titreorig<br>FROM film<br>WHERER titreorig LIKE "Potter%"</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:31:53 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473236605</guid>
      </item>
      <item>
         <title>Corrigé Question n°8</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473251423</link>
         <description><![CDATA[<div> dir Integer Foreign Key References Personne(npers) :<br><br>Cela vous permet de faire le lien entre <strong>npers</strong> et <strong>dir<br><br></strong> SELECT titreOrig, nom <br> FROM Film F, Personne P <br> WHERE F.dir = P.npers</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:39:18 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473251423</guid>
      </item>
      <item>
         <title>Corrigé Question n°9</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473263487</link>
         <description><![CDATA[<div>SELECT titreOrig, nom</div><div>FROM Film F , Personne P, Acteur A</div><div>WHERE A.npers = P.npers</div><div>AND A.nfilm = F.nfilm<br><br>L ' ordre n'a pas d'importance quand on a plusieurs jointures en SQL</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:45:35 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473263487</guid>
      </item>
      <item>
         <title>Corrigé Question n°10</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473279092</link>
         <description><![CDATA[<div><em>SELECT nom <br>FROM Film F, Acteur A,Personne P <br>WHERE F.nfilm= A.nfilm <br>AND P.npers = A.npers <br>AND titreOrig="Million dollar baby"</em></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:53:49 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473279092</guid>
      </item>
      <item>
         <title>Corrigé Question n°11 et 12</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473286841</link>
         <description><![CDATA[<div>SELECT nom</div><div>FROM Personne P, Film F</div><div>WHERE F.titreOrig = 'Batman Begins'</div><div>AND P.npers = F.dir<br><br>SELECT titreOrig, genre <br>FROM Film F, Personne P <br>WHERE nom=« Clint Eastwood » <br>AND P.npers=F.dir<br><br>Restriction: VARCHAR, chaine de caractère : '' / " " / &lt;&lt; &gt;&gt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 17:57:40 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473286841</guid>
      </item>
      <item>
         <title>Corrigé Question n°14</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473313380</link>
         <description><![CDATA[<div> SELECT titreOrig, P2.nom <br>FROM Acteur A, Personne P1, Personne P2, Film F <br>WHERE P1.npers=A.npers <br>and F.nfilm=A.nfilm and F.dir=P2.npers <br>AND P1.nom="Will Smith" <br><br>Attention ici à ne pas mélanger les noms</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 18:11:22 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473313380</guid>
      </item>
      <item>
         <title>Corrigé question n15</title>
         <author>felixjoguet</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473319979</link>
         <description><![CDATA[<div>SELECT titreOrig, type<br>FROM Personne P, DVD D, Film F, Acteur A<br>WHERE Personne P = "Julia Roberts"<br>AND P.npers=A.npers<br>AND A.nfilm=F.nfilm<br>AND F.nfilm=D.nfilm</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 18:14:50 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473319979</guid>
      </item>
      <item>
         <title>Corrigé Question n°16</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473324307</link>
         <description><![CDATA[<div>SELECT titreOrig, nom FROM Personne P, Acteur A, Film F <br>WHERE F.nfilm=A.nfilm AND P.npers=A.npers AND titreOrig LIKE 'Indiana Jones%' </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 18:17:07 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473324307</guid>
      </item>
      <item>
         <title>Corrigé Question n°17</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473336041</link>
         <description><![CDATA[<div><br>SELECT DISTINCT nom <br>FROM Personne P, Acteur A <br>WHERE P.npers = A.npers <br>AND P.nom&lt;&gt;'Brad Pitt'<br>AND nfilm IN ( SELECT nfilm <br>                           FROM Acteur A, Personne P <br>                           WHERE A.npers = P.npers <br>                           AND nom='Brad Pitt')<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 18:23:27 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473336041</guid>
      </item>
      <item>
         <title>Corrigé Question n°18</title>
         <author>lhoumeau_maxime</author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473348828</link>
         <description><![CDATA[<div>SELECT titreOrig, nom <br>FROM Film F, Personne P <br>WHERE nom LIKE « David% » <br>AND F.dir=P.npers<br>ORDER BY nom (car tri par ordre alphabétique)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-03-24 18:30:36 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/473348828</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/508224430</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet.com/lhoumeau_maxime" />
         <pubDate>2020-04-15 10:53:57 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/508224430</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/509495058</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet.com/lhoumeau_maxime" />
         <pubDate>2020-04-15 21:56:46 UTC</pubDate>
         <guid>https://padlet.com/lhoumeau_maxime/gtmxan5t8zj0/wish/509495058</guid>
      </item>
   </channel>
</rss>
