Forum Replies Created

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

  • RE: LTRIM,RTRIM

    L TRIM removes all the white space from the starting of the pattern and R TRIM removes all the white space at the end of the pattern.:-)

  • RE: Split data

    CREATE TABLE Emp(

    EmpName VARCHAR(9),

    Age INT,

    MaritalStatus char(1))

    INSERT INTO Emp VALUES ('Abhinav',40,'S')

    INSERT INTO Emp VALUES ('Dhvani',20,'M')

    INSERT INTO Emp VALUES ('Nehal',20,'M')

    INSERT INTO Emp VALUES ('Sunil',95,'M')

    INSERT INTO Emp VALUES ('Suvrendu',40,'M')

    INSERT INTO Emp VALUES ('Bill',11,'S')

    INSERT...

  • RE: Query to delete the records with top 3 marks from a student table

    create table marks

    (

    student name nvar char(50),

    marks int

    )

    Insert into marks(student name,marks) values('ma ha',67)

    Insert into marks(student name,marks) values('tuba',78)

    Insert into marks(student name,marks) values('Deena',70)

    Insert into marks(student name,marks) values('Oriya',90)

    Insert into marks(student name,marks) values('saga',98)

    select * from...

  • RE: Ranking and Summing

    sorry,I cant understand your doubt but i think this may provide solution to you.

    Declare @Product ID int

    Declare @Product Type char(10)

    Declare @Product Rank int

    Declare cc cursor

    for

    select Product Type,Product Rank from #Products

    open...

  • RE: Can we call stored Procedure inside a function

    That not possible ,we can call function with in the store procedure.

  • RE: Can we call stored Procedure inside a function

    Thats not possible to call store procedure inside the function,we can call function with in the store procedure

  • RE: using Correlated subQuery in Join not working

    Cross apply is very difficult than join ...i think there is no data available depends upon your requirement give the table of contents connected with this query.

  • RE: not able to understand that store procedure running recursively or not

    Ur code is unable to understand specify your doubt and use clear SQL query.

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