0
Good morning, I came across a question I can’t resolve.
I have the following code:
select id, name, characteristics as characteristic
from monsters
order by id
Return me the following table:
id name characteristic
1 Cyril big, smelly
2 Tiny small, stinky, loud
3 Niall flatulent
4 Umph idiotic, nasty
5 Martin mad, stupid, bad-breath
I am being asked to return only the first word of the characteristic... How can I solve?
Thank you
I would say, normalize the https://pt.wikipedia.org/wiki/Normaliza%C3%A7%C3%A3o_de_dados
– Motta