diff --git "a/48 \351\251\254\345\256\217\350\276\276/\344\271\235\346\234\21012\346\227\245.md" "b/48 \351\251\254\345\256\217\350\276\276/\344\271\235\346\234\21012\346\227\245.md" new file mode 100644 index 0000000000000000000000000000000000000000..654b6ee1a8fa8301ded4570345e0995ce7427d2b --- /dev/null +++ "b/48 \351\251\254\345\256\217\350\276\276/\344\271\235\346\234\21012\346\227\245.md" @@ -0,0 +1,139 @@ +```sql +/*==============================================================*/ +/* DBMS name: MySQL 5.0 */ +/* Created on: 2023/9/12 18:03:05 */ +/*==============================================================*/ + +create database film charset utf8; +use film; + +drop table if exists Relationship_3; + +drop table if exists Relationship_4; + +drop table if exists audience; + +drop table if exists brief; + +drop table if exists comments; + +drop table if exists language; + +drop table if exists moviinformation; + +drop table if exists type; + +/*==============================================================*/ +/* Table: Relationship_3 */ +/*==============================================================*/ +create table Relationship_3 +( + type_id int not null, + mo_id int not null, + primary key (type_id, mo_id) +); + +/*==============================================================*/ +/* Table: Relationship_4 */ +/*==============================================================*/ +create table Relationship_4 +( + au_id int not null, + mo_id int not null, + primary key (au_id, mo_id) +); + +/*==============================================================*/ +/* Table: audience */ +/*==============================================================*/ +create table audience +( + au_id int not null, + au_name varchar(20) not null, + au_number char(10) not null, + primary key (au_id) +); + +/*==============================================================*/ +/* Table: brief */ +/*==============================================================*/ +create table brief +( + br_director varchar(20) not null, + mo_id int not null, + br_scriptwriter varchar(10) not null, + be_score int not null, + primary key (br_director) +); + +/*==============================================================*/ +/* Table: comments */ +/*==============================================================*/ +create table comments +( + co_name varchar(10) not null, + mo_id int not null, + co_content varchar(20) not null, + primary key (co_name) +); + +/*==============================================================*/ +/* Table: language */ +/*==============================================================*/ +create table language +( + lan_id int not null, + mo_id int not null, + lan_type varchar(20) not null, + primary key (lan_id) +); + +/*==============================================================*/ +/* Table: moviinformation */ +/*==============================================================*/ +create table moviinformation +( + mo_id int(10) not null auto_increment, + mo_name varchar(20) not null, + mo_time time not null, + mo_date date not null, + primary key (mo_id) +); + +/*==============================================================*/ +/* Table: type */ +/*==============================================================*/ +create table type +( + type_id int not null auto_increment, + type_plot varchar(20) not null, + type_love varchar(20) not null, + type_terror varchar(20) not null, + type_panic varchar(20) not null, + primary key (type_id) +); + +alter table Relationship_3 add constraint FK_Relationship_3 foreign key (type_id) + references type (type_id) on delete restrict on update restrict; + +alter table Relationship_3 add constraint FK_Relationship_6 foreign key (mo_id) + references moviinformation (mo_id) on delete restrict on update restrict; + +alter table Relationship_4 add constraint FK_Relationship_4 foreign key (au_id) + references audience (au_id) on delete restrict on update restrict; + +alter table Relationship_4 add constraint FK_Relationship_7 foreign key (mo_id) + references moviinformation (mo_id) on delete restrict on update restrict; + +alter table brief add constraint FK_Relationship_2 foreign key (mo_id) + references moviinformation (mo_id) on delete restrict on update restrict; + +alter table comments add constraint FK_Relationship_5 foreign key (mo_id) + references moviinformation (mo_id) on delete restrict on update restrict; + +alter table language add constraint FK_Relationship_1 foreign key (mo_id) + references moviinformation (mo_id) on delete restrict on update restrict; + +``` + + diff --git "a/48 \351\251\254\345\256\217\350\276\276/\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260.md" "b/48 \351\251\254\345\256\217\350\276\276/\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260.md" new file mode 100644 index 0000000000000000000000000000000000000000..4229b2ceec0c382bb87cb801b2b0c3837a827e0e --- /dev/null +++ "b/48 \351\251\254\345\256\217\350\276\276/\347\254\254\344\270\200\346\254\241\347\254\224\350\256\260.md" @@ -0,0 +1,14 @@ +笔记 +== + +​ 新学期,意味着新的目标,充满着新的期待。我们应该以更加积极向上的态度投入到自主学习中,持续发扬软工学子的守正务实、但当实干的精神。 + +​ 新学期、新奋斗、新开始、新起点。 + +​ 我们应当多关注招聘网站,多以我们所学的专业招聘职位的岗位要求,为我们的学习目标;这样可以使我们更好的适应今后的工作。 +例如: +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + +**前端部分:1)HTML:网页的核心语言,构成网页的基础   2)CSS:使网页更加丰富多彩灿烂的利器   3)JavaScript:使网页动起来的根本,加强了网页和用户之间的交互   4)HTML DOM:换一种更加形象化的角度来看待网页,让我们更加方便的控制 网页   5)HTML BOM:与浏览器交互不可或缺的工具   6)JavaScript库,主要是:jQuery及其插件、YUI及其插件,使编写网页更加的方便快捷和健壮的强大工具   7)AJAX:异步提交,增强了用户使用网页的良好交互体验   8)JSON: 比 XML 更小、更快,更易解析的数据传输工具   9)FLEX:提供丰富多彩的动画效果   10)普元工作流:更加清晰明了的帮助用户处理业务流程上面的工作   11)JSP:Servlet的展示层,使网页逻辑与网页设计的显示分离   12)JSTL:加强和简化了JSP页面的开发   13)EL:使JSP页面写起来更加简单 **后台部分:**   1)JAVA语言编程基础部分:内容丰富是Java知识体系结构的核心和基础   2)JDBC:提供了一种基准,据此可以构建更高级的工具和接口,使Java开发人员能够编写数据库应用程序   3)JavaMail:用于电子邮件的相关的编程工作   4)JUnit:单元测试,整个变成工作测试的地位始终非常重要   5)Log4j:使我们能够更加细致地控制日志的生成过程   6)Servlet:JavaWeb的核心   7)Struts2:JavaWeb编程中明星级的框架,优点多功能强使编程工作更简单,主要用于控制跳转   8)Spring:JavaWeb编程中明星级的框架,同样优点多功能强使编程工作更简单,主要用于管理对象   9)iBatis:JavaWeb编程中明星级的框架,同样也是优点多功能强使编程工作更简单,主要用于程序和数据库之间的交互   10)SQL:与数据库交互式编程的必备工具  **版本控制:**   1)SVN:版本控制,方便团队协同工作 + + **WEB服务器:**   1)Tomcat:优秀免费的中小型WEB服务器   2)Weblogic:功能很强大的WEB服务器  **开发工具:**   1)Eclipse:开源强大的Java编程工具   2)MyEclipse:在eclipse 基础上加上自己的插件开发而成的功能强大的企业级集成开发环境 **数据库:**   1)Oracle:数据库业界老大,这个常用一点当然,也仅仅是常用一些常用的功能而已,需要加强   2)MySQL:最好的关系型数据库之一   3)SqlServer:最好的关系型数据库之一 **数据库客户端:**   1)Toad:非常棒的数据库客户端软件