Buscar..


Sintaxis

  1. SELECT * FROM table WHERE (condition1) AND (condition2);

  2. SELECCIONAR * DESDE la tabla DONDE (condición1) O (condición2);

Y O Ejemplo

Tener una mesa

Nombre Años Ciudad
Mover 10 París
Estera 20 Berlina
María 24 Praga
select Name from table where Age>10 AND City='Prague'

Da

Nombre
María

select Name from table where Age=10 OR City='Prague'

Da

Nombre
Mover
María


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow