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.
で使用if existsする場合、表示したいフィールドまたは「存在しない」フィールドselectを返すにはどうすればよいですか?id
if exists
select
id
SELECT IF(EXISTS( SELECT id, dateIn FROM table WHERE id = 10), my selected fields here, 'Does not exist')
または、これを行う別の方法はありますか?