MySQL Forums
Forum List  »  General

Re: I have both lower-case and camel-case table names
Posted by: Peter Brawley
Date: August 11, 2021 08:03AM

Stick with lower case table & column names. Merge eg ...

insert into studenta select * from studentA;
rename table studentA to obsolete_studenta;

... and when you're satisfied all these moves made no errors, drop each obsolete table.

Options: ReplyQuote


Subject
Written By
Posted
Re: I have both lower-case and camel-case table names
August 11, 2021 08:03AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.