Jump to content

bhavik_solanki

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by bhavik_solanki

  1. Try this. This will return only records start with number. will not even blank.Select * from Books Where Title like '[0-9]%'
  2. Delete From EmpSalary where EmpId In( Select A.EmpId From EmpSalary A,EmpSalary B Where A.EmpId > B.EmpId And A.Salary = B.Salary )
  3. Try This QueryUpdate User2 Set UId = User1.Uid From User1 Where User1.UserName = User2.UserName
  4. In SQL server u can try this querySelect Distinct Top 2 salary from EmpSalary Order by salary Desc
×
×
  • Create New...