Posts

Showing posts from March 26, 2019

Waikiki

Image
Pour les articles homonymes, voir Waikiki (homonymie). Cet article est une ébauche concernant Hawaï. Vous pouvez partager vos connaissances en l’améliorant ( comment ? ) selon les recommandations des projets correspondants. Waikiki.mw-parser-output .entete.map{background-image:url("//upload.wikimedia.org/wikipedia/commons/7/7a/Picto_infobox_map.png")} Administration Pays   États-Unis Ville Honolulu Géographie Coordonnées 21° 16′ 48″ nord, 157° 49′ 39″ ouest Localisation Géolocalisation sur la carte : Hawaï Waikiki Géolocalisation sur la carte : Hawaï Waikiki modifier   Waikiki ou Waikīkī est un quartier de la ville d'Honolulu, capitale de l'État d'Hawaï, sur la côte sud de l'île d'Oahu, aux États-Unis. Waikiki Beach. Son nom signifie en hawaïen : « eau douce jaillissante ». Le quartier est séparé du reste de la ville par le Canal Ala Wai  (en) qui rejoint l'océan

Filter the entries shown upon SELECT in MariaDB

Image
0 I have entries in a certain mariadb table with values in a column named code like: ABC-SI-GR-0 ABC-SI-NAV-0 ABC-GO-NAV-0 ABC-SI-NAV-3P ABC-GO-GR-0 ABC-GO-GR-3P ... ... and so on now I want to SELECT all entries from that table which have SI as a part of the string in the code column. I have tried SELECT * WHERE code LIKE %SI% FROM [table] which did not work. check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE code LIKE %SI% FROM [table]' at line 1 Can anyone point me to a more successful kind of syntax for such? mariadb share | improve this question asked Jan 24 at 13: