“SQL existe operador” Respostas de código

Se existir 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

Respostas semelhantes a “SQL existe operador”

Procure respostas de código populares por idioma

Procurar outros idiomas de código