package com.example.demo.repository;

import java.util.List;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;

import com.example.demo.entity.Country;

public interface CountryRepo extends JpaRepository<Country, Integer> {

	@Query(nativeQuery = true, value = "SELECT * FROM app_countries ORDER BY country_name")
	List<Country> orderByCountryName();

}
