Respuesta :

Lanuel

In MySQL, the acceptable syntax for the SELECT keyword include:

  1. SELECT column1, column2, .....
  2. FROM customer_name;
  3. SELECT * FROM customer_name;

What is MySQL?

MySQL can be defined as open-source relational database management system (RDBMS) that was designed and developed by Oracle Corporation in 1995. MySQL was developed based on structured query language (SQL).

The keywords in MySQL.

Some of the keywords that are reserved for use in MySQL include the following:

  • DELETE
  • CREATE
  • MASTER
  • SELECT

In database management, the SELECT keyword is typically used for selecting data from a database.

In MySQL, the acceptable syntax for the SELECT keyword include:

  1. SELECT column1, column2, .....
  2. FROM customer_name;
  3. SELECT * FROM customer_name;

Read more on MySQL here: https://brainly.com/question/24443096