Execute the SQLite query where id is 5


Q.47 Execute the SQLite query where id is 5. Ans:-

  • Database Name: MyCircle, Table Name: Friends
  • |ID|Name    |Age|
    | 1 |Nitin    | 21 |
    | 2 |Kaka    | 22 |
    | 3 |Ganesh| 20 |
    | 4 |Sama    | 18 |
    | 5 |Pavan    | 16 |
    | 6 |Akash    | 10 |
    | 7 |Gopi    | 08 |
    | 8 |Rushi    | 04 |
    | 9 |Didi    | 04 |
  • select * from Friends where ID=5;
  • output
    | 5 |Pavan    | 16 |

Kalavati Technologies Pvt Ltd