Re: creating a table is there another way to do this?
Do you keep making typos?
You could always write your "create table ... " in a text editor of your choice, allowing you to correct, and re-correct your spelling until you are satisfied.
Then copy the text from the text editor and paste it to the mysql commandline client.
On the subject of mixing case.
Words like SELECT, FROM, WHERE etc can be either upper or lower case. MySQL doesn't care.
For database objects, like table names, case depends on your operating system.
*nix type systems are case sensitive, mytable and myTable are two different things. On Windows, they are the same thing.
Recommendation is that database objects should always be lowercase, so that code will work on any system.
Good luck,
Barry.
Subject
Written By
Posted
September 21, 2022 12:45PM
Re: creating a table is there another way to do this?
September 21, 2022 05:47PM
September 21, 2022 05:56PM
September 21, 2022 05:59PM
September 21, 2022 06:07PM
September 21, 2022 06:02PM
September 21, 2022 07:34PM
September 21, 2022 07:48PM
September 21, 2022 08:22PM
September 22, 2022 08:00AM
September 22, 2022 09:31AM
September 22, 2022 03:50PM
September 22, 2022 06:05PM
September 22, 2022 06:12PM
September 22, 2022 06:25PM