I created a table called member in the database to save the contents of the bulletin board or membership on the web This error appears when I try to look up with the desc.
Why is that? For your information, all other tables are checked normally. As far as I know, the syntax error is an error phrase that occurs when you enter the wrong command, but what is wrong?
mysql
In mysql, member is a word that is already reserved and used.
Do it like below
desc `member`;
© 2024 OneMinuteCode. All rights reserved.