标签: mysql
我有以下查询:
SET @content_type = 'Movie'; select * from title where content_type_id=@content_type;
上面返回0个结果,但是,如果我执行以下操作,它将返回正确数量的restul:
select * from title where content_type_id='Movie';
我在这里做什么错了?