Question

I did some SQL queries through the phpMyAdmin interface (only select). All the sudden I can't display one of the tables anymore.

Neither through the "browse" tab nor through an SQL command using the * operator.

Both methods: Clicking the "browse" tab or executing

SELECT * FROM `rosters` WHERE 1

return the following error

 #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') LIMIT 0, 30' at line 1

If I return specific fields like

SELECT `id`, `league_id`, `player_id`, `fflteam_id`, `season`, `active`, `contract`, `pick_id`, `created`, `modified` FROM `rosters` WHERE 1

which are all fields the table contains, the table is displayed.

Even stranger is that other users don't have that problem.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top