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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selecting ICITEM.DESC 1

Status
Not open for further replies.

johnny45

Technical User
Nov 8, 2006
136
CA
Hello I'm using the following to select from pervasive Accpacc DB:
Code:
SELECT ICITMV.ITEMNO, ICITMV.VENDCOST, ICITEM.DESC
FROM ICITMV INNER JOIN ICITEM ON ICITMV.ITEMNO = ICITEM.ITEMNO
WHERE (((ICITMV.ITEMNO)='101553'))
GROUP BY ICITMV.ITEMNO, ICITMV.VENDCOST, ICITEM.DESC
HAVING (((Count(1))=1))

however DESC is a reserved word in pervasive, I must use "ICITEM.DESC"...but if I use "ICITEM.DESC" iI get automation error from excel VBA which is using this query...

Any help would be apreciated

 
GOT IT....

"ICITEM.DESC" SHOULD BE:
ICITEM."DESC" ==> works !!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top