How to retrieve data from MySQL columns?

Hi Team,
I want to retrieve data from MySQL

Hi Vidyesh,

You can use this query ‘SELECT <column_name>,<column_name>…
FROM table_name;’ to retrieve data from a particular column
or you can use ‘SELECT * from table_name;’ to retrieve all data from the table.

Regards,
Pramod