In SQL, how do you select all columns from a table named 'Customers'?

  • SELECT * FROM Customers
  • SELECT ALL FROM Customers
  • SELECT COLUMNS FROM Customers
  • SELECT DATA FROM Customers
To select all columns from a table named 'Customers' in SQL, you use the syntax: SELECT * FROM Customers. The asterisk (*) is a wildcard character that represents all columns.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *