Search:

Type: Posts; User: kumaresforu; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    16
    Views
    7,358

    SQL Server - Re: Find 2nd Highest in sql server

    Select top 1 price from (select top 2 price from products order by price desc);
  2. Answers
    5
    Views
    3,916

    ASP.NET Re: Book for Microsoft ASP.Net exam

    ASP.NET UNLEASHED 2.0 is a best one
  3. Answers
    1
    Views
    3,334

    SQL Re: Execution Time In SQL

    U can use

    Wait for delay'00:00:02'
    selct * from table

    (or)

    Wait for Time'10:00'
    selct * from table
  4. Answers
    4
    Views
    6,540

    Re: Code to display input in reverse

    U can go this way
    int a = Textbox1.Text.Length;
    string b = "";
    for(int i=a;i>0;i--)
    {
    b = b+""+Textbox1.Text.Substring(i-1, 1).ToString();
    }...
  5. Answers
    16
    Views
    7,092

    SQL Re: merge every few rows to one

    select uname, max(grade) from aa group by uname
Results 1 to 5 of 5
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact