Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT SUBSTR(myfield,INSTR(myfield,'-')+1,50) AS post_hyphen FROM my_table;
SELECT SUBSTR('TEST 100-001 Summer 2019',INSTR('TEST 100-001 Summer 2019','-')+1) AS post_hyphen FROM dual