Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

6/5/24, 12:18 Operadores SQL

 Tutorials  Exercises  Services   Sign Up Log in

HTML
 CSS JAVASCRIPT SQL PITÓN JAVA PHP CÓMO W3.CSS C

Operadores SQL
❮ Anterior Próximo ❯

Operadores aritméticos SQL


Operator Description Example

+ Add Try it

- Subtract Try it

* Multiply Try it

/ Divide Try it

% Modulo Try it

Operadores SQL bit a bit


Operator Description

& Bitwise AND

| Bitwise OR

^ Bitwise exclusive OR

https://www.w3schools.com/sql/sql_operators.asp 1/6
6/5/24, 12:18 Operadores SQL

Operadores
 Tutorials  de comparación
Exercises  Services  SQL
 Sign Up Log in

HTML
 CSS JAVASCRIPT SQL PITÓN JAVA PHP CÓMO W3.CSS C
Operator Description Example

= Equal to Try it

> Greater than Try it

< Less than Try it

>= Greater than or equal to Try it

<= Less than or equal to Try it

<> Not equal to Try it

Operadores compuestos SQL


Operator Description

+= Add equals

-= Subtract equals

*= Multiply equals

/= Divide equals

%= Modulo equals

&= Bitwise AND equals

^-= Bitwise exclusive equals

|*= Bitwise OR equals

Operadores lógicos SQL


Operator Description Example

https://www.w3schools.com/sql/sql_operators.asp 2/6
6/5/24, 12:18 Operadores SQL

ALL Tutorials  TRUE if all of the subquery values meet


Exercises  Services   the condition
Sign Up Try
Logitin

 AND CSS
HTML TRUE if all the
JAVASCRIPT SQLconditions
PITÓNseparated
JAVA by PHP
AND is TRUE
CÓMO Try it C
W3.CSS

ANY TRUE if any of the subquery values meet the condition Try it

BETWEEN TRUE if the operand is within the range of comparisons Try it

EXISTS TRUE if the subquery returns one or more records Try it

IN TRUE if the operand is equal to one of a list of Try it


expressions

LIKE TRUE if the operand matches a pattern Try it

NOT Displays a record if the condition(s) is NOT TRUE Try it

OR TRUE if any of the conditions separated by OR is TRUE Try it

SOME TRUE if any of the subquery values meet the condition Try it

❮ Anterior Próximo ❯

Pionero de W3schools
Sigue tu progreso: ¡es gratis! Inscribirse Acceso

https://www.w3schools.com/sql/sql_operators.asp 3/6

You might also like