1. 查询价格>20的书籍
    1. select * from tb_books where book_price>20;

    image.png

    1. 查询书籍编号不等于3的书籍
    1. select * from tb_books where ID <>3;

    image.png