insert语句可以这样使用EXISTS吗?
insert into Blog_Article_Comment(ArticleID,UserID,CommentContent)values(88,1,'内容')
where EXISTS(select 1 from Blog_Article_Content WHERE Article_ID=88)
如果文章id存在就新增该文章评论,应该怎样修改?
------解决方案--------------------
倒过来就可以了
if EXISTS(select 1 from Blog_Article_Content WHERE Article_ID=88)
insert into Blog_Article_Comment(ArticleID,UserID,CommentContent)values(88,1,'内容')
------解决方案--------------------
insert into Blog_Article_Comment(ArticleID,UserID,CommentContent)这样?
SELECT 88,1,'内容'
FROM Blog_Article_Comment
where EXISTS(select 1 from Blog_Article_Content WHERE Article_ID=88)