Subject | Re: [firebird-support] In Firebird what table contains the email address? |
---|---|
Author | Alexandre Benson Smith |
Post date | 2012-04-26T19:53:27Z |
Em 26/4/2012 14:42, kissthegirlsandmakethemcry escreveu:
No one can know it !
> In Firebird what table contains the email address?you should ask the one who created the database
>
> I'm currently do a select statement, but I can't seem to find the email address.
>
> Here is my current select statement:
> SELECT so.id, so.num AS sonumber, so.customercontact, so.shiptoname, so.shiptoaddress, so.shiptocity, so.cost, stateconst.code, so.shiptozip, countryconst.abbreviation, carrier.name,carrier.description,shipcarton.freightweight, shipcarton.id as shipcartionid, shipcarton.cartonnum, customercontactview.contactnum FROM so
> LEFT JOIN countryconst ON so.shiptocountryid = countryconst.id
> LEFT JOIN stateconst ON so.shiptostateid=stateconst.id
> LEFT JOIN carrier ON so.carrierid = carrier.id
> LEFT JOIN shipcarton ON so.id = shipcarton.orderid
> LEFT JOIN customercontactview ON so.customerid=customercontactview.custid
> WHERE so.num='$ORDERNUMBER'
>
> I've looked in various tables and cannot seem to find it.
> Any help would be greatly appreciated!!
>
No one can know it !