“SQL existe operador” Código de respuesta

Si existe SQL Server

IF EXISTS (SELECT * FROM tblGLUserAccess WHERE GLUserName ='xxxxxxxx') 
BEGIN
   SELECT 1 
END
ELSE
BEGIN
    SELECT 2
END
Amused Angelfish

SQL existe operador

SELECT column_name(s)
FROM table_name
WHERE EXISTS
(SELECT column_name FROM table_name WHERE condition);
Testy Tiger

Respuestas similares a “SQL existe operador”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código