How do I query "begin with" in MySQL?
Translations
Englishالعربية
български
català
中文
čeština
dansk
Nederlands
eesti
suomi
français
Deutsch
Ελληνικά
עברית
हिंदी
magyar
Bahasa Indonesia
italiano
日本語
한국어
latviešu
lietuvių
norsk
polski
Português
română
русский
slovenčina
slovenski
español
svenska
ไทย
Türkçe
українська
Tiếng Việt
SELECT stuff REGEXP 'itunes' as is_itunes;
In this MySQL query, if "stuff" has the word "itunes" in it, it will mark it as itunes.
However, I want to say "begin with". How can I check for "begin with" instead of anywhere in the text?
This question and answers originated from www.stackoverflow.com
Question by TIMEX (11/9/2011 7:17:57 PM)
Answer |