From: | "Jeff Eckermann" <jeff_eckermann(at)yahoo(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: outer join in ms query |
Date: | 2005-04-18 14:51:10 |
Message-ID: | d40hgq$15ff$3@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
MS Query is crippled. If you want to do much from Excel, you will need to
write code. But it's not difficult. ADO is a good choice for this.
"gad renert via DBMonster.com" <forum(at)nospam(dot)DBMonster(dot)com> wrote in message
news:91d2a328e2c04b1086807bac8910c34c(at)DBMonster(dot)com(dot)(dot)(dot)
> Hello, I am a novice with SQL, I have 2 tables
> (transfer)
> bar_code | quant | date
> 723445...| 2 |01/03/2005
>
> (imports)
>
> bar_code | serial_no | supplier
>
>
> I want to add to the first table (transfer)
> next to each barcode the suppliers name from the (imports) table.
>
> ms query doesn't allow me to do outer joins.
>
> I tried:
> SELECT transfer.bar_code, transfer.quant, imports.supplier
> FROM transfer left join imports on transfer.bar_code=imports.bar_cod
> GROUP BY transfer.bar_code
>
> and it didn't work popperly, the (transfer) table is modified.
> what i want to do is very similar to the VLOOKUP function in EXCELL
>
> Hope that someone can help me.
>
> Gadi
>
> --
> Message posted via http://www.dbmonster.com
From | Date | Subject | |
---|---|---|---|
Next Message | Philippe Lang | 2005-04-18 15:13:35 | Re: outer join in ms query |
Previous Message | Achilleus Mantzios | 2005-04-18 14:39:19 | Re: [SQL] How to add 1 hour in a date or time stamp? |