请教多条件查询的存储过程
一个表student有5个字段:studentId,studentName,studentSex,studentAge,department用一个sql语句查询的话是这样:select * from student where studentId="123456"
现在我想做一个存储过程实现动态改变查询条件, 比如改成select * from student where studentName="654321"
就是说存储过程有2个参数,一个影响"="左边,一个影响"="右边。这要怎么操作?