Displaying 1 result from an estimated 1 matches for "t10249".
Did you mean:
10249
2011 Mar 21
1
value changed after paste() function
...re my code:
when i do:
> sqlFetch(channel,'transactions')
outputs are following(only parts, there are around 200 transactions in
total)
orderid productname price quantity discount
1 T10248 potato 1.80 10 0.00
2 T10248 sweets 2.00 5 0.00
3 T10249 milk 1.99 9 0.00
4 T10249 apple 2.35 40 0.00
when i do:
> paste(sqlFetch(channel,'transactions'))
outputs are:
[1] "c(1, 1, 2, 2)"
[2] "c(7, 8, 6, 1)"...