Hi,
I am having a problem with a query. I am not sure how to do this...
I have Table A and Table B. I need to match up itemnumbers from Table A to Table B with I have done with a join. Those records display fine, but I also want the item numbers from table B to display also...the ones that don't match in Table A
here is what I have so far....
SELECT webpricing09.itemnumber, webpricing2.itemnumber...etc....
FROM webpricing09 Left Join Webpricing2 ON webpricing09.sku = webpricing2.itemnumber
WHERE webpricing2.itemnumber IS NOT NULL
any suggestions would be very helpful
thanks
Sue
I am having a problem with a query. I am not sure how to do this...
I have Table A and Table B. I need to match up itemnumbers from Table A to Table B with I have done with a join. Those records display fine, but I also want the item numbers from table B to display also...the ones that don't match in Table A
here is what I have so far....
SELECT webpricing09.itemnumber, webpricing2.itemnumber...etc....
FROM webpricing09 Left Join Webpricing2 ON webpricing09.sku = webpricing2.itemnumber
WHERE webpricing2.itemnumber IS NOT NULL
any suggestions would be very helpful
thanks
Sue