DML Operations with WHERE

Get Started. It's Free
or sign up with your email address
DML Operations with WHERE by Mind Map: DML Operations with WHERE

1. Operation

1.1. Exact values

1.1.1. Range

1.1.1.1. Exclusion

1.1.1.1.1. Numeric range

2. Example

2.1. WHERE BillingCity in ('Paris','Berlin')

2.1.1. WHERE Total between 1.98 and 5

2.1.1.1. WHERE BillingCity not in ('Paris', 'Berlin')

2.1.1.1.1. WHERE CustomerId like '2_'

3. Description

3.1. Если значение равно 'Paris' или 'Berlin

3.1.1. Значение между 1.98 и 5

3.1.1.1. Значение не равно 'Paris' или 'Berlin'

3.1.1.1.1. Значение в диапазоне от 20 до 29 включительно