Intern
204
What SQL query can be used to retrieve all data from a table?
Answer from AI
sobes.tech AI
SELECT *
FROM table_name; -- Here, table_name is the name of the table from which data needs to be retrieved.
Answer from AI
sobes.tech AI
SELECT *
FROM table_name; -- Here, table_name is the name of the table from which data needs to be retrieved.