What's the difference between SELECT and SHOW in SQL? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

What's the difference between SELECT and SHOW in SQL?

7th Mar 2020, 2:26 PM
Harish Kumar. M
Harish Kumar. M - avatar
2 ответов
+ 1
SHOW COLUMNS FROM table_name; OR DESCRIBE table_name; Both are pretty much the same but the SHOW let's you use conditions whereas DESCRIBE don't. These two will give you the table information and not the actual data that is contained inside. But SELECT let's you show the data inside the table based on the query specified with conditions.
7th Mar 2020, 3:51 PM
Avinesh
Avinesh - avatar