Its been along time since I had to write a report in CR.
This is the sql I would use
Select
a.id,
a.name,
b.record_no
b.text
From
Table a,
Table b
Where
a.id = b.id
and b.record_no <5
order by b.record_no asc
for every 1 table a record I will pull up 5 table b records. I would then like to put the b.text field into a long report ( concatenate)
report field = b.text.1
report field = b.text.2
report field = b.text.3
report field = b.text.4
report field = b.text.5
then display
a.id a.name report field
thanks for any input folks!!
This is the sql I would use
Select
a.id,
a.name,
b.record_no
b.text
From
Table a,
Table b
Where
a.id = b.id
and b.record_no <5
order by b.record_no asc
for every 1 table a record I will pull up 5 table b records. I would then like to put the b.text field into a long report ( concatenate)
report field = b.text.1
report field = b.text.2
report field = b.text.3
report field = b.text.4
report field = b.text.5
then display
a.id a.name report field
thanks for any input folks!!