Select all of the following items that might belong in one column of a table:
I choose: a primary key, a foreign key, multiple values.
Which one is wrong?
CodePudding user response:
I think this is what you're looking for
SELECT * from TABLE_NAME
Asterisk Means 'All'
CodePudding user response:
To get all the entries from a column in a table,
SELECT <Column_Name> FROM Table_Name;