Is there any way to send two parameters:
PARAMETER_dateFrom
PARAMETER_dateTo
into my view (see below) called from outside?
I expect query like this:
select * from v_customFieldString where bug.id = XXXX and send in some way PARAMETER_dateFrom, PARAMETER_dateTo
create or replace view...
I need to create view from two select statements, need to join them.
1. select A.id,A.projectId,A.lastUpdated,A.oldValue from (
select bug.id as id
,bug.project_id as projectId
,bug.last_updated as lastUpdated
,his.old_value as oldValue
from table1 bug
left join history his on bug.id =...
Hi all,
need help with sql cript.
let's have these rows:
Col1 Col2 ... Coln
1. Project1 Notes1 ...
2. Project1 Notes2 ...
......
10. Project1 Notes2 ...
and I need to get this result in one row :
Col1 Col2
1. Project1 Notes1,Notes2,Notes3....Notesn
how...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.