Jump to content

ecoleman

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ecoleman's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I did actually flip it around in the end
  2. Superb, I ended up with SELECT name from table ORDER BY CASE WHEN primary_order != '0' THEN primary_order ELSE secondary_order END and that works a treat. Thank You.
  3. Hi, I need to sort a query by two columns, but only use the second column value if the first column is equal to 0. eg. Name | Primary Order | Secondary Order Fred | 1 | 10 Sue | 0 | 2 William | 10 | 3 Richard | 0 | 1 would ideally be sorted as (Primary Order or Secondary (If Score = 0)), name which should produce a result like Fred - (1) Richard - (1) Sue - (2) William - (10) Any help would be greatly appreciated. Thanks in advance.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.