Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルが az または 0-9 文字で始まらないレコードを選択したい。
これを行う1つの方法は次のとおりです。
SELECT * FROM table WHERE title NOT LIKE 'a%' AND... title NOT LIKE 'z%' ....
これを行うより良い方法はありますか?