Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select with case when
Message
From
07/06/2001 08:24:11
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00516210
Message ID:
00516241
Views:
11
This message has been marked as the solution to the initial question of the thread.
>Hello All,
>
>I'm trying to use a case when in this select to order classifications. The grades available, in order of importance are A+,A,B+,B,C+,C.
>
>I want to create a select that will translate these so a report can be ordered by importance.
>
>This returns an error message:
>
>
>Select name, sire1, case when grade = "A+" then "1", grade = "A" then "2", grade = "B+" then "3" end as gradeorder from master where grade <> " " order by name
>
>Any help would be appreciated.
>
>Jim Harvey
>jharvey@netrax.net

James,
SQL server does that but this kind of case is not allowed in VFP SQL.
You could do something like :
Select name, sire1, ;
  iif(grade = "A+",1,;
  iif(grade = "A",2,;
  iif(grade = "B+",3,;
  iif(grade = "B",4,;
  iif(grade = "A",2,;
))))) as gradeorder from master where grade # " " order by name
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform