有2张表,t1关联t2,
我在t1中插入数据,检查category_id在t2表中存在否?存储过程怎么实现
if exists(select category_id from t2 where id='插入到t1表的ID') select '存在' else select '不存在'
如果插入出错会返回错误,可以使用exception来解决吧。