Donate SIGN UP

Can some assist me with an SQL query

Avatar Image
Chris100682 | 00:38 Thu 27th Jul 2006 | Technology
1 Answers
Using a the left join function, how would I link the following tables

Table 1
src_prod_ofr
source_code

Table 2
Src_prod_ofr
CIT_code
Gravatar

Answers

Only 1 answerrss feed

Best Answer

No best answer has yet been selected by Chris100682. Once a best answer has been selected, it will be shown here.

For more on marking an answer as the "Best Answer", please visit our FAQ.
Really need to know what database it is but the ANSI standard would be......

select T1.src_prod_ofr, T1. source_code, T2.cit_code
FROM table1 T1
LEFT JOIN table2 T2
ON T1.src_prod_ofr = T2.src_prod_ofr



Only 1 answerrss feed

Do you know the answer?

Can some assist me with an SQL query

Answer Question >>

Related Questions

Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.