! les listes branches et itemtypes qui sont visibles lors du mapping des grilles ne sont pas gérées dans les Valeurs autorisées MAIS dans l’Administration dans Sites et Groupes (branches) et Types de document (itemtypes) → Propriétaire : Champ Koha: […]
Archives journalières: 23 février 2018
SELECT champ_de recherche FROM table WHERE champ_de recherche LIKE <<nom_du_libelle>> Exemple : RECHERCHE GUIDEE PAR COTE SELECT biblio.datecreated AS Date_creation, biblio.title AS Titre, biblio.author AS Auteur, items.itemcallnumber AS Cote FROM items , biblio, biblioitems WHERE itemcallnumber LIKE <<cote>> AND biblio.biblionumber […]
Un exemple vaut parfois mieux que de longues explications : SELECT biblio.datecreated AS Date_creation, biblio.title AS Titre, biblio.author AS Auteur, items.itemcallnumber AS Cote FROM items , biblio, biblioitems WHERE biblio.datecreated BETWEEN <<date de creation BETWEEN (yyyy-mm-dd)|date>> AND <<and (yyyy-mm-dd)|date>> AND […]
SELECT * FROM nom_de_la_table LIMIT 5 Exemple : TABLE branches SELECT * FROM branches LIMIT 20