-
软件工程 Web技术与应用 实现简单关于TCP/IP协议的交互
软件工程 Web技术与应用 实现简单关于TCP/IP协议的交互-Web technology and application of software engineering to achieve a simple on the TCPIP protocol interactions
- 2022-09-05 03:30:03下载
- 积分:1
-
REVERSI ai parts for java
REVERSI ai parts for java
- 2022-03-06 16:18:43下载
- 积分:1
-
enterprisejavabeans3rdedition
EnterpriseJavaBeans3rdEdition-O reilly
- 2022-11-12 00:45:03下载
- 积分:1
-
一个动画编辑器 可以用来生成游戏中的动画资源
一个动画编辑器 可以用来生成游戏中的动画资源-An animation editor
- 2022-03-19 07:36:22下载
- 积分:1
-
java 中 tokenizer 的 extends
java 中 tokenizer 的 extends-java which extends the tokenizer
- 2022-03-06 07:10:03下载
- 积分:1
-
五子棋程序,可以实现人机对战的功能,人工智能
五子棋程序,可以实现人机对战的功能,人工智能-Gobang program, you can achieve the function of human-machine Versus, artificial intelligence
- 2022-06-18 00:37:51下载
- 积分:1
-
Java数据库编程实例(3)
Java数据库编程实例(3)-Java Database Programming Example (3)
- 2023-09-04 05:15:03下载
- 积分:1
-
Library management system is the work of library management indispensable part o...
图书馆管理系统是图书馆管理工作中不可缺少的部分,它对于图书馆的管理者和使用者都非常重要,所以图书馆管理系统应该为管理者与读者提供充足的信息和快捷的数据处理手段,但长期以来,人们使用传统的人工方式或性能较低的图书馆管理系统管理图书馆的日常事务,操作流程比较繁琐。一个成功的图书馆管理系统应提供快速的图书信息检索功能、快捷的图书借阅、归还流程。从读者与图书馆管理员的角度出发,本着以读者借书、还书快捷、方便的原则,本系统具有以下特点:
确保系统具有良好的系统性能,友好的用户界面。
较高的处理效率,便于使用和维护。
采用成熟技术开发,使系统具有较高的技术水平和较长的生命周期。
系统尽可能简化图书馆管理员的重复工作,提高工作效率。
简化数据查询、统计难度。
-Library management system is the work of library management indispensable part of its managers and users of the library are very important, so the library management system for managers and readers should provide sufficient information and efficient means of data processing, but a long time , the use of traditional artificial or lower performance of the library management system of the day-to-day management of library services, operating relatively cumbersome process. A successful library management system should provide rapid information retrieval library features, and quick to borrow books, the return pro
- 2023-03-08 20:20:03下载
- 积分:1
-
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table...
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table pet add weight int
删除列
alter table tbl_name drop col_name
例如,删除列weight:
mysql>alter table pet drop weight
改变列
alter table tbl_name modify col_name type
例如,改变weight的类型:
mysql> alter table pet modify weight samllint
另一种方法是:
alter table tbl_name change old_col_name col_name type
例如:
mysql> alter table pet change weight weight samllint
给列更名
mysql>alter table pet change weight wei
给表更名
alter table tbl_name rename new_tbl
例如,把pet表更名为animal
mysql>alter table pet rename animal
-alter table tbl_name add col_name type for example, to form an increase in weight mysql> alter table pet add weight int Remove Columns alter table tbl_name drop col_name For example, the deletion of column weight: mysql> alter table pet drop weight change out alter table tbl_name modify col_name type for example, the type of weight change: mysql> alter table pet modify w
- 2022-02-11 13:09:52下载
- 积分:1
-
详细介绍JAVA的 I/O。
详细介绍JAVA的 I/O。-detailed Java I/O.
- 2022-02-14 08:27:49下载
- 积分:1