Junior
What is 'FROM' in the context of SQL queries?
sobes.tech AI
Answer from AI
FROM specifies the table(s) from which data is retrieved.
SELECT column1, column2
FROM table_name; -- The table is specified here
sobes.tech AI
Answer from AI
FROM specifies the table(s) from which data is retrieved.
SELECT column1, column2
FROM table_name; -- The table is specified here