Below the is Practice question you need to solve to get the better understanding of the concept.

  1. Retrieve only name and age from the table.

    SELECT name, breed
    FROM dogs;
  2. Retrieve everything from the table.

    SELECT *
    FROM dogs;

Follow this link for the playground:- Click Me!