i want to display the stored procedure select query data as table in pgadmin I want to display the stored procedure select query output through the java spring boot app by using JDBC template. I can do this by using stored function in Postgres but not able to do it through stored procedure of postgres. here my procedure is created and called it is working but my table data is not displaying out in pgadmin
stored procedure
CREATE PROCEDURE get_mobiles(brand_name varchar)
LANGUAGE SQL
AS $$
SELECT * FROM mobile_phone where brand_name = brand_name;
$$;
can we able to display the select query procedure output in postgres pgadmin without function, if yes means how? and how can feed these inputs to my JDBC template