Click here to Skip to main content
15,894,337 members

Comments by nsvrao (Top 22 by date)

nsvrao 1-Jul-22 2:28am View    
select
case
when ((marks > 75 and marks < 90) and (marks > 50 and marks < 75)) then grade
else null
end as g1,
case
when ((marks > 40 and marks <= 50)and (marks > 30 and marks <= 40)) then grade
else null
end as g2
from student
where marks --- wanted to know what will be exact condition to be placed in where condition
nsvrao 30-Jun-22 12:17pm View    
Either of grade column is becoming NULL with the above query.
nsvrao 3-Mar-21 8:46am View    
no, this question is different. I am trying to pass dataset as an INOUT parameter to PostgreSQL stored procedure. In C# I am trying to develop the same.
nsvrao 2-Mar-21 10:03am View    
Thanks for your response.

I am trying to pass ref cursor as an input paramter to postgresql stored procedure.

I want to make this ref cursor input paramter as a generic one, so that I can pass any ref cursor as an input parameter for different databases like oracle, sql or postgresql stored procedures.
nsvrao 18-Jul-19 1:56am View    
Excel 2016... There are no multiple instances. Under one excel instance, multiple child processes are running.