in Sql by
Which of the following is not a valid SQL statement in SQLite?

a) CREATE TABLE

b) SELECT FROM

c) INSERT INTO

d) UPDATE

1 Answer

0 votes
by

Answer: b) SELECT FROM

Explanation: The correct syntax for the SELECT statement in SQLite is SELECT column_name FROM table_name. The FROM keyword is required to specify the table from which the data is being selected.

...