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.
私は従業員テーブルを持っています。最後の文字が「H」である従業員名の 3 番目の文字を検索したいと考えています。クエリは何ですか?私を助けてください。ちなみに、私はオラクル10gを使用しています。
SUBSTR関数を使用する必要があります
SUBSTR
SELECT substr( employee_name, 3, 1 ) third_letter FROM employee WHERE substr( employee_name, -1 ) = 'H'
SELECT substr(employee_name, 3, 1 ) as third_letter FROM employee WHERE employee_name LIKE '%H'