Database and SQL Learning Mode
Given the following table called "names" ..
pos | name | |
---|---|---|
-2 | anna | anna@mail.com |
-1 | betty | bettty@mail.com |
NULL | clara | clara@mail.com |
1 | demi | demi@mail.com |
2 | emma | emma@mail.com |
3 | gabi | gabi@mail.com |
how many rows will be returned from the following query?
select * from names where pos < 10
|
|
|
|