Answer a) example:
mysql> show tables;
b) example:
mysql>create table book(
id int(10) not null auto_increment primary key,
title varchar(50) not null,
author varchar(50)
);
c) example:
mysql>insert into book(title,author)values('MySQL','Mikel Jone');
d) example:
mysql>update book set title='Advanced MySQL' where id=1;
e) example:
mysql>select id, title, author from book;
f) example:
mysql>alter table book add column isbn varchar(20);
g) example:
mysql>desc book;
h) example:
mysql>describe book
i) example:
mysql>drop table book;
j) example:
mysql>delete from book where id=3;
: html_entity_decode(): Passing null to parameter #1 ($string) of type string is deprecated in