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.
SELECT INSTR('359616044513513-2574', '-')
dev=359616044513513やid=2574のような変数に値を割り当てたい
MYSQL のストアド プロシージャでどのように行うことができますか?
これを試して:
SELECT SUBSTRING_INDEX('359616044513513-2574', '-', 1), SUBSTRING_INDEX('359616044513513-2574', '-', -1) INTO @dev, @id;