hmm i was also thinking sbout using instr.... ill see what i can do im still a beginner at this but "SQL doesn't do highlights" is a valuable information that means my teaher tricked me xD ill solve the problem from a different point of view nowill report back later if i get something(ok i did it it took me a while but i maneged to do it using mid to cut the string and instr to id where it should cut then assembleing everything again with &)here is the code for whoever needs: SELECT nome, lcase(mid(nome,1,instr(nome,[nome?])-1)) & ucase(mid(nome,instr(nome,[nome?]),len([nome?]))) & lcase(mid(nome,instr(nome,[nome?])+len([nome?]),255)) AS [novo nome]FROM alunoWHERE instr(nome,[nome?])>=1;
THANK YOU SO MUCH you anwser allowed me o think clearly and solve my problem