How to call a select db question when using Generator ?
How to call a select db question when using Generator ?
samsamtest
Posts: 52Questions: 15Answers: 1
How to call a select db question when using Generator ?
This is the select question i have created:
Example Questions:
select k.kundnr, k.kundnamn, sum(o.radsumma) as [radsumma]
from kund k
inner Join orderrad o on k.kundnr = o.kundnr
where o.levstatus = 'Olevererad'
group by
k.kundnr, k.kundnamn
select count(*) from orderrad where levstatus = 'Olevererad'
select * from kund where landkod = 'DK'
Thanks
Kinde Regards
Sam
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
I've answered this in reply to your duplicate question.
Allan