Computer Science, asked by Anonymous, 1 month ago

\huge\pink{Question}


• Please solve the questions given in attachment

it's urgent
______________________

Attachments:

Answers

Answered by Equestriadash
9

(I assume the table's name is 'Students', as it hasn't been specified properly. Hence I'll be using 'Students' in the queries below.)

(i) To insert a row with the following: (9, "Suman", "XII", "11/07/2000", "Patna", 499)

  • Insert into Students values(9, 'Suman', 'XII', '2000-07-11', 'Patna', 499);

(ii) To display those cities that start with 'P'.

  • Select City from Students where City like 'P%';

(iii) To display records where the Marks are more than 400.

  • Select * from Students where Marks > 400;

Equestriadash: Thanks for the Brainliest! ^_^"
Answered by Anonymous
3

Answer:

how many brainliest answer left to reach genius I will help you homie

Similar questions