0
sql
can anyone explain me this(in challenge 1 part 8) SELECT age FROM zoo WHERE animal LIKE ' '
2 Respuestas
+ 1
You basically select all ages (each age as row) from zoo (witch is a table) where animal (is a other attribute like age) like '<what_you_want>'.
So there are two basic placeholder: % is used for an unspecific amount of characters and _ is used for one single character.
Example:
SELECT age FROM zoo
WHERE animal LIKE '_e%'
This Query will return all ages in the table zoo, where our animal (e.g. varchar2) contains the letter 'e' at 2nd place and is as long as you want. (Zebra, etc.)
In hope, I could help you!
0
thanks a lot.really helped a lot in understanding of the concept