Hi,
With your help I can combine SQLFiles:
https://www.b4x.com/android/forum/threads/solved-sql-combine-attach.99371/
Unfortunately have a problem with Dups.
If I combine all the files into one (select in list and write back to a file), the Select works well:
Select * FROM log WHERE (vom LIKE '%D-282%') AND (band> = 144000 and band <= 146000) GROUP BY user ORDER BY date ASC, time ASC
When I combine the files with ATTACH and use UNION, I get dups:
Select * FROM log WHERE (vom LIKE '%D-282%') AND (Band> = 144000 and Band <= 146000)
UNION Select * FROM log WHERE (vom LIKE '%D-282%') AND (band> = 144000 and band <= 146000) GROUP BY user ORDER BY date ASC, time ASC
whats wrong?
With your help I can combine SQLFiles:
https://www.b4x.com/android/forum/threads/solved-sql-combine-attach.99371/
Unfortunately have a problem with Dups.
If I combine all the files into one (select in list and write back to a file), the Select works well:
Select * FROM log WHERE (vom LIKE '%D-282%') AND (band> = 144000 and band <= 146000) GROUP BY user ORDER BY date ASC, time ASC
When I combine the files with ATTACH and use UNION, I get dups:
Select * FROM log WHERE (vom LIKE '%D-282%') AND (Band> = 144000 and Band <= 146000)
UNION Select * FROM log WHERE (vom LIKE '%D-282%') AND (band> = 144000 and band <= 146000) GROUP BY user ORDER BY date ASC, time ASC
whats wrong?