In the DDL-Trainer (using difficulty "Mittel" and schema "Fahrrad"), there's this question:
Ändern Sie den Namen der Tabelle "Fahrradwerkstatt" zu "Werkstatt".
Running this is a correct solution:
ALTER TABLE Fahrradwerkstatt RENAME TO Werkstatt
While running this isn't (but should):
ALTER TABLE Fahrradwerkstatt
RENAME TO Werkstatt
Seems weird to me, because in other questions, I was able to add linebreaks to my desire. Maybe this is a bug (because from my understanding, SQL ignores whitespaces and linebreaks)?
In the DDL-Trainer (using difficulty "Mittel" and schema "Fahrrad"), there's this question:
Running this is a correct solution:
While running this isn't (but should):
Seems weird to me, because in other questions, I was able to add linebreaks to my desire. Maybe this is a bug (because from my understanding, SQL ignores whitespaces and linebreaks)?