A
A
Alan Chernov2021-09-18 20:19:05
SQL
Alan Chernov, 2021-09-18 20:19:05

Why SQL query is not correct?

I started to understand SQL, I go through a tutorial on sql-academy.org and in paragraph 3 I can’t complete the task.
61461f7664853070389442.jpeg

SELECT  member_name FROM FamilyMembers
WHERE member_name LIKE '% Quincey'
ORDER BY  status, member_name;

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
idShura, 2021-09-18
@idShura

Replace member_name with *

SELECT * FROM FamilyMembers
WHERE member_name LIKE '% Quincey'
ORDER BY status, member_name;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question