Computer Science, asked by laxmikumarisingh093, 8 months ago

sql commands to display the names of all the products in the store​

Answers

Answered by ananyareddyavula
0

Answer:

select

*

from store

Explanation:

By executing the above query, all rows and columns(*) from the table 'store' are selected and displayed

Similar questions