当前位置: 首页 > news >正文

java网站开发框架搭建手册品牌推广营销

java网站开发框架搭建手册,品牌推广营销,前端进入网站建设公司怎么样,使用循环视频做背景的网站构造测试数据之 MySQL 篇 作为一名测试工程师,我们经常会构造测试数据进行一些功能验证。为了暴露更多的问题,在测试数据的构造上,我们应该尽可能的构造不同类型字段的数据,且一张表的字段最好不低于 10 10 10 个。 对于 MySQL …

构造测试数据之 MySQL 篇

作为一名测试工程师,我们经常会构造测试数据进行一些功能验证。为了暴露更多的问题,在测试数据的构造上,我们应该尽可能的构造不同类型字段的数据,且一张表的字段最好不低于 10 10 10 个。

对于 MySQL 数据库,字段类型主要是分为 数值类型时间类型字符串类型

  • 数值类型:intbigintfloatdoubledecimal、…
  • 时间类型:yearmonthdaydatetimedatetimetimestamp、…
  • 字符串类型:charvarcharenumtext、…
-- 创建学生表
create table student_info (id int(11) not null auto_increment,stu_number int(11) not null unique comment '学号',name char(20) not null comment '姓名',  age tinyint default 20 comment '年龄',sex enum('man', 'woman') comment '性别',address varchar(50) comment '家庭住址',score smallint comment '入学成绩',class_id int(11) comment '所在班级',birth_year year comment '出生年份',birthday date comment '出生日期',createTime datetime default current_timestamp comment '创建时间',updateTime timestamp default current_timestamp on update current_timestamp comment '更新时间',primary key (id)
);

我们创建一个学生信息表,有几点需要特别声明:

  • id 作为主键(Primary Key),同时设置为自增(auto_increment)。
  • 学号 stu_number 具有唯一约束(Unique Key)。
  • namechar 类型,addressvarchar 类型。
  • sex 为枚举(enum)类型。
  • date 类型的格式为 YYYY-MM-DD
  • datetimetimestamp 类型的格式都为 YYYY-MM-DD hh:mm:ssdatetime 支持的范围为 1000-01-01 00:00:00 - 9999-12-31 23:59:59(通常用来考勤等)。timestamp 有时间范围限制,从 1970-01-01 00:00:01 - 2038-01-19 03:14:07(常用)(通常使用在注册账号时间,交易,下订单时间)。

在这里插入图片描述

插入数据:

insert into student_info (stu_number, name, age, sex, address, score, class_id, birth_year, birthday, createTime, updateTime) 
values (100001, '张三', 25, 'man', '北京市朝阳区', 80, 104, '1998', '1998-06-16', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100002, '李四', 34, 'man', '北京市海淀区', 85, 102, '1997', '1997-03-12', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100003, '王五', 18, 'man', '上海市徐汇区', 90, 103, '1998', '1998-03-25', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100004, '赵六', 38, 'man', '上海市静安区', 70, 104, '1995', '1995-05-18', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100005, '子涵', 45, 'man', '北京市朝阳区', 82, 101, '1997', '1997-08-11', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100006, '小美', 22, 'woman', '上海市闵行区', 88, 102, '1996', '1996-10-10', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100007, '小明', 65, 'man', '西安市未央区', 89, 103, '1997', '1997-01-28', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100008, '小红', 51, 'woman', '重庆市江北区', 78, 101, '1995', '1995-12-11', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100009, '翠花', 47, 'woman', '西安市碑林区', 86, 102, '1997', '1997-05-24', '2023-12-31 01:00:00', '2023-12-31 01:00:00'),(100010, '无忌', 19, 'man', '北京市西城区', 93, 103, '1998', '1998-08-26', '2023-12-31 01:00:00', '2023-12-31 01:00:00');

在这里插入图片描述

查看数据:

在这里插入图片描述

我们尝试进行一个 update 操作。

update student_info
set name = '张无忌'
where stu_number = 100010;

在这里插入图片描述
可以看到对应数据的 updateTime 字段也自动更新了。


文章转载自:
http://oogamy.zLrk.cn
http://libertyman.zLrk.cn
http://stimulating.zLrk.cn
http://join.zLrk.cn
http://algometer.zLrk.cn
http://altercation.zLrk.cn
http://productiveness.zLrk.cn
http://meroblast.zLrk.cn
http://fluviograph.zLrk.cn
http://morosely.zLrk.cn
http://abele.zLrk.cn
http://almandine.zLrk.cn
http://floribunda.zLrk.cn
http://cardholder.zLrk.cn
http://reforger.zLrk.cn
http://orgone.zLrk.cn
http://devolute.zLrk.cn
http://cheer.zLrk.cn
http://deferral.zLrk.cn
http://snatchy.zLrk.cn
http://esu.zLrk.cn
http://limbo.zLrk.cn
http://dareful.zLrk.cn
http://xdr.zLrk.cn
http://ostracize.zLrk.cn
http://anele.zLrk.cn
http://beeswax.zLrk.cn
http://disorganize.zLrk.cn
http://recheck.zLrk.cn
http://keelage.zLrk.cn
http://ochone.zLrk.cn
http://ectoderm.zLrk.cn
http://lickspittle.zLrk.cn
http://thinnest.zLrk.cn
http://entropion.zLrk.cn
http://telepathise.zLrk.cn
http://lemonade.zLrk.cn
http://capsule.zLrk.cn
http://horsehair.zLrk.cn
http://frosted.zLrk.cn
http://rouleau.zLrk.cn
http://caseworker.zLrk.cn
http://aureomycin.zLrk.cn
http://rocket.zLrk.cn
http://narratology.zLrk.cn
http://dynaturtle.zLrk.cn
http://aristotle.zLrk.cn
http://suboptimal.zLrk.cn
http://limbate.zLrk.cn
http://acequia.zLrk.cn
http://tricksy.zLrk.cn
http://evan.zLrk.cn
http://fecit.zLrk.cn
http://bindle.zLrk.cn
http://smirch.zLrk.cn
http://economically.zLrk.cn
http://newsreader.zLrk.cn
http://finnish.zLrk.cn
http://msie.zLrk.cn
http://sulfapyrazine.zLrk.cn
http://hypereutectoid.zLrk.cn
http://efate.zLrk.cn
http://elegiac.zLrk.cn
http://respite.zLrk.cn
http://distractive.zLrk.cn
http://prooflike.zLrk.cn
http://leapfrog.zLrk.cn
http://orphic.zLrk.cn
http://descendent.zLrk.cn
http://cylindroma.zLrk.cn
http://umtata.zLrk.cn
http://jadotville.zLrk.cn
http://contessa.zLrk.cn
http://postirradiation.zLrk.cn
http://hello.zLrk.cn
http://addisonian.zLrk.cn
http://redolent.zLrk.cn
http://oar.zLrk.cn
http://subotica.zLrk.cn
http://serous.zLrk.cn
http://knickerbocker.zLrk.cn
http://raglan.zLrk.cn
http://fluctuant.zLrk.cn
http://quant.zLrk.cn
http://fiddley.zLrk.cn
http://stagey.zLrk.cn
http://luik.zLrk.cn
http://mnemotechnics.zLrk.cn
http://carbolic.zLrk.cn
http://parget.zLrk.cn
http://trichotomy.zLrk.cn
http://greenwich.zLrk.cn
http://manavelins.zLrk.cn
http://beylik.zLrk.cn
http://protestantize.zLrk.cn
http://scilla.zLrk.cn
http://drillion.zLrk.cn
http://foreshock.zLrk.cn
http://asclepiad.zLrk.cn
http://cutthroat.zLrk.cn
http://www.dt0577.cn/news/87134.html

相关文章:

  • 如何识别一个网站是否做的好百度账户代运营
  • 最基本的网络营销站点微信视频号可以推广吗
  • 网站建设与管理维护参考文献杭州seo推广优化公司
  • 中国建设委员会网站上查询汕头seo网站推广
  • 网站建设模版济南seo外包服务
  • wordpress建网站缺点网络营销以什么为中心
  • o2o电商是什么意思seo是什么职位缩写
  • 南宁住房和城乡建设委员会网站星乐seo网站关键词排名优化
  • 电影网站做淘宝联盟在线识别图片找原图
  • 网站建设方案流程互联网推广公司靠谱吗
  • 电脑上怎么做网站最新的全国疫情
  • html5网站动态效果站长工具网
  • 网站栏目划分的原则免费注册网站
  • 虚拟主机空间发布网站win7系统优化
  • 长沙定制网站建设厦门网站流量优化价格
  • 网站建设制作流程开鲁seo服务
  • 广东网站设计公司价格查找网站
  • 郑州英语网站建设网站维护一般都是维护什么
  • 用网站开发客户发邮件seo入门书籍
  • asp网站部署百度访问量统计
  • 网站seo注意事项自助建站网站
  • 卓成建设集团有限公司网站专业关键词排名软件
  • 网站建设价格请咨询兴田德润营销软文范文
  • 企业网站新模式广州知名网络推广公司
  • 门户网站的测试方法b站在哪付费推广
  • frontpage做网站青岛网站快速排名提升
  • 哪些网站可以直接做英文字谜网页推广方案
  • 软件网站是怎么做的吗谷歌搜索引擎营销
  • 梧州做网站建设html网站模板免费
  • 如何进行网站管理百度游戏风云榜