Code:
from Student as student where student.address = :address
where :address is a named parameter.
Notice the dot between student and address. This is an Object oriented query language.
I suggest you to read the Hibernate reference guide tons of time and play with very simple example. This is the best way to learn. You'll find the reference guide difficult and obscure. Actually it's very rich and it takes time to understand everything (I still learn when I read it).
Have a look at the External ducmentation, especially tutorials.