Home>
I have two tables:
I need to dine these tables and output so that it turns out
when I display them with code
SELECT * FROM comment
RIGHT JOIN comment_answer ON comment.ID= comment_answer.id_comments
ORDER BY comment.id DESC
I get something like this:
how can this be implemented?
Самуэль Арутюнян2022-01-27 21:20:48Related questions
- php : DB information is not displayed. mysqli. request for a random withdrawal
- php : INSERT query fails in mysqli
- python : pymysql.err.operationalerror: (1305, 'Function Name. Top Does Not Exist')
- mysql : SQL query returns only 1 result
- mysql : Very slow Update Where Order by MariaDB on a secondary key
- Connect repository with the latest version of MySQL (8) for Ubuntu 16.04?
- How to send all selected SELECT OPTION VALUE PHP MYSQL values?
- php : How to convert an array with the same keys to an associative, keeping all the values?
- mysql : Do not see a column
- php : Not added entries in the database
This is already on the client, so form the output, and now everything comes from the database as it should.
u_mulder2022-01-28 20:30:12