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.
「Name19」、「Name21」、「Name56」などのレコードを Mysql で取得する必要があります。取得方法を教えてください。
SELECT * FROM YourTable WHERE YourColumn regexp '^Name[0-9]+'
これを試して
SELECT * FROM <NameTable> WHERE <Name> LIKE '%[0-9]'