I have to go through some code of a project to implement some missiong functionality. It uses jpa.In some popj classes i have found
@Entity
@Table(name="TYPE")
@NamedQueries( {
@NamedQuery(name = "getTypes", query = "SELECT dct FROM Type dct")
})
I know that i can used to get all records by using this query.Does this query return all records in type table?