• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

SQL test

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #21
    select * from table where name = 'tom'

    Comment


      #22
      Originally posted by PRC1964
      select * from table where name = 'tom'
      Serving religion with the contempt it deserves...

      Comment


        #23
        Originally posted by PRC1964
        select * from table where name = 'tom'
        Seems to work.

        Comment


          #24
          select * from table where answer=correct

          Comment


            #25
            I like this solution best:

            select 1000-max(salary*1000-age)%1000 from salary

            always finds the youngest person having the highest salary (as long as no one is > 1000 years old)


            Comment


              #26
              Originally posted by DimPrawn
              I like this solution best:

              select 1000-max(salary*1000-age)%1000 from salary

              always finds the youngest person having the highest salary (as long as no one is > 1000 years old)


              nice
              Insanity: repeating the same actions, but expecting different results.
              threadeds website, and here's my blog.

              Comment


                #27
                Originally posted by DimPrawn
                I like this solution best:

                select 1000-max(salary*1000-age)%1000 from salary

                always finds the youngest person having the highest salary (as long as no one is > 1000 years old)


                it doesnt work


                (\__/)
                (>'.'<)
                ("")("") Born to Drink. Forced to Work

                Comment


                  #28
                  Works for me

                  Comment


                    #29
                    One thing you've got to watch is that there might be another guy the same age as Tom, but on a lower salary. So I would suggest, (we'll call the table "wages"):

                    select * from wages
                    where age =

                    (select MIN(age) from wages
                    where salary = (select MAX(salary) from wages))

                    AND salary = (select MAX(salary) from wages)


                    or alternatively to avoid having to do the max salary select twice:


                    declare @maxsalary INT
                    select @maxsalary = MAX(salary) from wages

                    select * from wages
                    where age = (select MIN(age) from wages where salary = @maxsalary)
                    AND salary = @maxsalary

                    Any good?

                    Comment


                      #30
                      how about:



                      SELECT wages.*
                      FROM Wages,(select max(wage) as sal from wages ) as FF
                      WHERE wages.age = (select min(age) from wages where wage= [FF].[Sal])
                      and Wages.wage = [FF].[sal]


                      wow! I actually wrote something that works!
                      McCoy: "Medical men are trained in logic."
                      Spock: "Trained? Judging from you, I would have guessed it was trial and error."

                      Comment

                      Working...
                      X