前期准备工作 数据库表 dp.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/netshop?useSSL=true&useUnicode=true&characterEncoding=utf-8 use ...
分类:
其他好文 时间:
2021-06-23 16:40:43
阅读次数:
0
权限管理和备份 用户管理 可视化管理 SQL命令操作 用户表:msql.user 同样就是对表的操作,就是对这张表的增删改查 -- 创建用户 create user kuangshen identfied by '123456' -- 修改当前用户密码 set password = password ...
分类:
数据库 时间:
2021-06-23 16:27:31
阅读次数:
0
https://www.cnblogs.com/shewoqishui/p/14184984.html -- 1.添加字段-- 基本语法alter table 表 add 列名 字段类型 null-- 例:给学生表添加Telephone字段并指定类型为vachar,长度为50,可空alter tab ...
分类:
数据库 时间:
2021-06-22 18:47:32
阅读次数:
0
报错信息: PHP Warning: Packets out of order. Expected 1 received 56. Packet size=3420216 in /data/bogiang/test/EC/swoole_process.php on line 62 Warning: P ...
分类:
数据库 时间:
2021-06-22 18:19:52
阅读次数:
0
mysql 设置当前时间 update swr_sys_param sp set sp.create_time = CURRENT_TIMESTAMP where sp.id = 1 查字段 https://www.cnblogs.com/zhangyuhang3/p/6873895.html ...
分类:
数据库 时间:
2021-06-22 18:18:48
阅读次数:
0
新增字段 alter table MIC2005.QP_CAT_DESCRIPTION add (type varchar2(2) default '0' not null ); --新增字段 comment on column MIC2005.QP_CAT_DESCRIPTION.type is ...
分类:
数据库 时间:
2021-06-22 18:17:13
阅读次数:
0
MySQL的安装与配置、数据库的创建、数据表的创建、数据类型和运算符、MySQL函数、查询数据、数据表的操作(插入、更新与删除数据)、索引、存储过程和函数、视图、触发器、用户管理、数据备份与恢复、日志以及性能优化等。最后通过两个综合案例的数据库设计,进一步讲述MySQL在实际工作中的应用。 获取: ...
分类:
数据库 时间:
2021-06-22 18:07:01
阅读次数:
0
SpringMVC:整合SSM 要求:需要熟练掌握MySQL数据库,Spring,JavaWeb及MyBatis知识,简单的前端知识 一、数据库环境 创建一个存放书籍数据的数据库表 create database `ssmbuild`; use `ssmbuild`; create table `b ...
分类:
其他好文 时间:
2021-06-22 17:58:28
阅读次数:
0
alter table student_info modify id int(3); -- 先删除自增约束 alter table student_info drop primary key; -- 再删除主键约束 alter table student_info drop id; -- 再删除该字 ...
分类:
其他好文 时间:
2021-06-22 17:54:17
阅读次数:
0
建表如下: CREATE TABLE `aes_demo` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `password` varchar(255) CHARACTER ...
分类:
数据库 时间:
2021-06-22 17:52:33
阅读次数:
0