Thread Subselect - wie bekomme ich ein TRUE, wenn KEINE Einträge vorhanden sind? (6 answers)
Opened by olruebe01 at 2009-02-25 14:36

Spieler
 2009-02-25 16:02
#119134 #119134
User since
2007-09-24
70 Artikel
BenutzerIn
[default_avatar]
In postgres gibt es coalesce(), und ich glaube, das ist SQL Standard:
Code: (dl )
1
2
SELECT coalesce ((SELECT 1 WHERE 'f'),0);
0

View full thread Subselect - wie bekomme ich ein TRUE, wenn KEINE Einträge vorhanden sind?