mysql中的变量赋值不正确

bttbmeg0  于 2021-06-20  发布在  Mysql
关注(0)|答案(0)|浏览(256)

我有以下疑问:

SET @content_type = 'Movie';
select * from title where content_type_id=@content_type;

上面返回0个结果,但是,如果执行以下操作,它将返回正确的restuls数:

select * from title where content_type_id='Movie';

我做错什么了?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题