Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

concate on field vfp

Status
Not open for further replies.

WedHouse

Technical User
Apr 25, 2024
8
0
0
ID
i have data like this.. utility.dbf..
user(c,5) departement(c,25) inventory(c,50) date(date) trxid(n,6)
RON supply PC sparepart 11/03/2024 112003
RON supply MOUSE 11/03/2024 113001
RON supply PC sparepart 11/03/2024 113019
RON supply KEYBOARD 15/03/2024 114021
i used indexkey on date and trxid..

i wanna ask SQL statement like excel concate function ??
user departement inventory date
RON supply PC SPAREPART, MOUSE 11/03/2024

i use SQL statement like this..
select utility.user, utility.departement, utill.inventory, utility date from utility join select(utility.inventory, utility.date from utility ;
where not empty(utility.date) group by 1,2) utill where not empty(utility.date) group by 1,2,3,4 order by 2 into cursor mutill readwrite

any sugesstion for my SQL statement above..

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top