Sql Join Query

Sql Join Query

aTable Name : TblState

Stid        StateName     CountryId
---------------------------------------------
01      TN        01
02      KR        01
03      KL        01
04      WB        01
05      New York      02
06      Oregon        02            



Table Name : TblDist

Did Stateid         DistName     CountryId
-----------------------------------------------------   
01  01      Chennai       01
02  01      Covai         01    
03  01      Madurai       01
04  03      Palakkad      01
06  05      AAA       02
08  06      XXX       02            


I need output for like this conditoin(tblstate.CountryId=tblDist.countryId)

Output

Stateid StateName
------------------------
01  TN
01  TN
01  TN  
03  KL
View Answers









Related Tutorials/Questions & Answers:
upgrading sql query join
upgrading sql query join  upgrading sql query join
Sql Join Query
Sql Join Query  aTable Name : TblState Stid StateName CountryId --------------------------------------------- 01 TN 01 02 KR 01 03 KL 01 04 WB 01 05 New
Advertisements
Join the two tables in sql
Join the two tables in sql  How to join the two tables in SQL ..and return the value from common column in SQL Database
PHP SQL Inner Join
PHP SQL Inner Join  This Example illustrates how to use the inner join clause in the sql query. The inner join return rows when there is at least one match in both tables. This is the good example to understand inner join clause
SQL Right JOIN
Use Right JOIN in SQL Query The Example shows you the RIGHT JOIN in SQL Query. In this  Example, we use RIGHT OUTER... SQL Right JOIN      
PHP SQL Left Join
PHP SQL Left Join  This Example illustrates how to use left join clause in the sql query. The left join return all rows from the left table, even if there are no matches in the right table. In this example left join is used
PHP SQL Right Join
PHP SQL Right Join  This Example illustrates how to use right join clause in the sql query. The right join return all rows from the right table, even if there are no matches in the left table. In this example right join is used
SQL LEFT JOIN
SQL LEFT JOIN      ... 5 105 SQL INNER JOIN Syntax... for SQL INNER JOIN is given as : SELECT column_name
SQL Join
SQL Join      ... 'roseindia'.    Mysql Join Query The Tutorial illustrate an example from Mysql Join Query. To grasp this we create a table
Sql Query
Sql Query  Is this query work in Db2 or not ? Select * from FORUM LIMIT 2
Sql Query
Sql Query  Is this query work in Db2 or not ? Select * from FORUM LIMIT 2
sql query
sql query  two tables are emp,loc write a query to display all the emp information whose locname not equal to bangalore
sql query
sql query  hi friend, Im doing a project,in that a main id... numbers of sids.i want to delete the sid based on the mid.for that i need sql query plz help to me
sql query
sql query  hi friend, Im doing a project,in that a main id... numbers of sids.i want to delete the sid based on the mid.for that i need sql query plz help to me
sql query
sql query  hi friend, Im doing a project,in that a main id... numbers of sids.i want to delete the sid based on the mid.for that i need sql query plz help to me
Sql Query
Sql Query  Hi M Navjeet Ghai I want to know How to Show A name(Like Navjeet Ghai And Manpreet Singh Sodhi) of employees from a employee table as N.Ghai & M.S.Sodhi by using sql query
SQL Query
SQL Query  Selecting the third highest salary of Employee without using any subquery?   Here is a query: SELECT salary FROM employee ORDER BY salary DESC LIMIT 2,1
SQL QUERY
SQL QUERY  am a having a table 'PROGRAMMER' with columns... C pascal Bhanu Sql... Pascal Sql Mahesh DBASE Cobol
Sql aggregate function with left join wrong output
Sql aggregate function with left join wrong output    I have three...(display 600 instead of 200) My sql query is : select s.partno,s.partname,sum(i.InvoiceQuantity),sum(p.IssueQuantity) from Stock s left join InwardEntry i
Sql aggregate function with left join wrong output
Sql aggregate function with left join wrong output    I have three...(display 600 instead of 200) My sql query is : select s.partno,s.partname,sum(i.InvoiceQuantity),sum(p.IssueQuantity) from Stock s left join InwardEntry i
Sql aggregate function with left join wrong output
Sql aggregate function with left join wrong output    I have three...(display 600 instead of 200) My sql query is : select s.partno,s.partname,sum(i.InvoiceQuantity),sum(p.IssueQuantity) from Stock s left join InwardEntry i
SQL query
SQL query  I need to combine two tables in order to get the values. As an example we have three tables having namely usertable,job table... inner join in order to get the user_id. Please help me
SQL Query - SQL
SQL Query  Hi I would like to know how to create a SQL query which would copy values from a field which contains multiple values to an existing... | +-----+-----------+-------------+ Query: INSERT INTO table2 (fruit1, fruit2, fruit3
sql query
sql query  SQL QUERY BROWSER declare @cout00 int declare @cout01 int declare @cout10 int declare @cout11 int declare @c1 float declare @gss float...); this is the query i have written for the table "dpscomp" - station date month
optimize sql query
optimize sql query  How to optimize sql query in mysql? Thanks
sql query - JDBC
sql query  I need a SQL query to add data into database
query - SQL
tell me how to write the query in database but not jsp code. thank u
PHP SQL Right Join
PHP SQL Right Join       This Example illustrates how to use right join clause in the sql queryJOIN is used to query data from two or more tables. The right
PHP SQL Left Join
PHP SQL Left Join       This Example illustrates how to use left join clause in the sql queryJOIN is used to query data from two or more tables. The left join
PHP SQL Inner Join
PHP SQL Inner Join       This Example illustrates how to use the inner join clause in the sql query. JOIN is used to query data from two or more tables. The inner join
sql query - SQL
sql query  hi sir,i have a month and year numbers,when i am enter a month and year in sql query then i want results for 1st day of month to last day of month in that year for that month plz provide a solution
Mysql Join Query
Mysql Join Query       Mysql Join Query is used to return the matchable records from ..._TO_REPLACE_1 The Tutorial illustrate an example from Mysql Join Query. To grasp this we
SQL query - SQL
SQL query  hi sir/Madam i am using MS Access where i have table like Fees_Struc: Amount (INT) Due_Date (Date) Fees_Pay: Paid(INT) Student_Bal: Panalty(INT) my problem is when the Due_date is equal
Hibernate SQL Query/Native Query
This tutorial describes Hibernate SQL Query, which is also known as Native Query
SQL QUERY - JDBC
SQL QUERY  I m running a query using apache tomcat the sql query is on adding an employee in the database whenever i click on add after inserting the values i am getting a java.lang.nullpointer exception
display sql query in hibernate
display sql query in hibernate  If you want to see the Hibernate generated SQL statements on console, what should we do
Sql query from oracle
Sql query from oracle  Please help me that I want to get the table names form the existing database who does it having eid coloumn plz provide me query in oracle database
Update SQL Query Example
Update SQL Query Example  Hi, I am beginner in SQL (MySQL) and trying to learn Update SQL Query with Example code. Can anyone explain me the SQL Update query with an example code? Thanks   Hi, A simple example
sql query to get data from two tables
sql query to get data from two tables  how can i get the data from two different tables?   Hi Friend, Please visit the following link:ADS_TO_REPLACE_1 JOIN Query Simple Query ThanksADS_TO_REPLACE_2
Named ? SQL query in hibernate
Named ? SQL query in hibernate  What is Named SQL query in hibernate... putting the sql queries to various places in between code. sample.hbm.xmlADS...; </property> </class> <query name
sql query search function
sql query search function  i have a textbox on a form , i like a search a data in the form, when i give whatever name and id or etc..its will search and show the same form , so help me using jsp
SQL Right JOIN
_name Use Right JOIN in SQL Query The Example shows you the RIGHT JOIN in SQL Query. In this  Example, we use RIGHT OUTER... SQL Right JOIN      
Hibernate Native SQL Query Introduction
In this section, you will learn Hibernate Native SQL query
ModuleNotFoundError: No module named 'sql-query'
ModuleNotFoundError: No module named 'sql-query'  Hi, My Python... 'sql-query' How to remove the ModuleNotFoundError: No module named 'sql... have to install padas library. You can install sql-query python with following
SQL QUERY ERROR
SQL QUERY ERROR  Im writing a query which shows error of INVALID CHARACTER The Query is Insert into PMST_EMP_MST(PMSNUM_EMP_ID,PMSSTR_EMP... THE FORM IS THROWING THE ERROR OF INVALID CHARACTER BUT THE SAME QUERY IS RUNNING
Doubt In Sql query
Doubt In Sql query  Hi Have a glance @ http://img98.imageshack.us/img98/4348/tableo.png For a single country there may be n numbers of country... createdt. I have tries with this query but it is returning redundancy records
SQL Query - JSP-Servlet
SQL Query   AS mysql backend updation query shows a syntax error. I gave the full query and the generated error here. Please send me the correct query anyone. st.executeUpdate("update stud_detail set name='"+newname
Sql query Duplicate
Sql query Duplicate  I have a Employee table with duplicate ID values... 3 D Delhi Then we have used the following query to find the duplicate data...'); You can use following query to find the duplicate id: select id, count(id
Please convert this SQL query to hibernate - Hibernate
Please convert this SQL query to hibernate  I have a SQl query, which needs to be converted to HQL query, but i am not successfull, please help me select a.msisdn,sum(b.amount) 'amount' from account a inner join
SQL LEFT JOIN
SQL LEFT JOIN      ... 5 105 SQL INNER JOIN Syntax...).The syntax for SQL INNER JOIN is given as :ADS_TO_REPLACE_5

Ads