Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Query to update table

    this will definitely update the no. of branches, it will also update those rows having no branches.

    Update tab1 set NoofBranch = ( Select Count(*) from tab2 where id = tab1.id...

  • RE: Alternative for LEFT JOIN

    hi

    use * after '=' notation

    for eg:

    Select * from Employee E, Department D

    where E.DeptCode =* D.DeptCOde

Viewing 2 posts - 1 through 2 (of 2 total)