When querying a simple table in MySql, the row values appear as NULL. How do I get my query to show the row values?
I created a table called "Author" and inserted row values into it in MySql. When I query the table with SELECT * FROM Author; the result will show the columns but not row values. I assume I have some kind…