How to display one or more tables in a single function in postgres as we do in sql server stored procedure?
Sql Server
Stored Procedure: UspGetValues
select StudentID,studentName from students:
Select TeacherID,TeacherName from Teacher
Postgres Sql: How we need to do?