Answered You can hire a professional tutor to get the answer.
Write a SQL statement to display the breed, type, and DOB of all pets having the type Dog.
Write a SQL statement to display the breed, type, and DOB of all pets having the type Dog.SELECT PETBREED, PETTYPE, PETDOBFROM PETWHERE PETTYPE = 'dog';I WROTE THIS DOWN AND when I press excute it doesn't come out what am I doing wrong?it says no rows selected