会话跟踪技术 - Cookie 和 Session 快速上手 + 登陆注册案例( 七 )

  • 数据库
    • tb_user
      -- 删除tb_user表drop table if exists tb_user;-- 创建用户表CREATE TABLE tb_user( id int primary key auto_increment, username varchar(20) unique, password varchar(32));-- 添加数据INSERT INTO tb_user(username,password) values('zhangsan','123'),('lisi','234');SELECT * FROM tb_user;
    • tb_brand
      -- 删除tb_brand表drop table if exists tb_brand;-- 创建tb_brand表create table tb_brand(    -- id 主键    id           int primary key auto_increment,    -- 品牌名称    brand_name   varchar(20),    -- 企业名称    company_name varchar(20),    -- 排序字段    ordered      int,    -- 描述信息    description  varchar(100),    -- 状态:0:禁用  1:启用    status       int);-- 添加数据insert into tb_brand (brand_name, company_name, ordered, description, status)values ('三只松鼠', '三只松鼠股份有限公司', 5, '好吃不上火', 0),       ('华为', '华为技术有限公司', 100, '华为致力于把数字世界带入每个人、每个家庭、每个组织,构建万物互联的智能世界', 1),       ('小米', '小米科技有限公司', 50, 'are you ok', 1);SELECT * FROM tb_brand;
  • 实体类