The table cannot be retrieved from Mysql.

Asked 2 years ago, Updated 2 years ago, 31 views

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

2022-09-21 12:15

1 Answers

In mysql, member is a word that is already reserved and used.

Do it like below

desc `member`;


2022-09-21 12:15

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.