I have a SELECT question:
SUMMARY TABLE LAYOUT:
ID char(16)
ATTR varchar(6)
LANG char(2)
SOMETEXT ntext
LANG is a language id; this can be specific (like EN) or neutral (like -).
I want to select certain attr's given an ID; when the passed variable matches the LANG
I want that row returned, otherwise the row with the LANG='-'... How do I do that?