weixin_46263982
码龄5年
关注
提问 私信
  • 博客:1,454
    社区:11,374
    问答:1,969
    视频:5
    14,802
    总访问量
  • 2
    原创
  • 1,454,262
    排名
  • 5
    粉丝
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:江西省
  • 加入CSDN时间: 2020-02-04
博客简介:

weixin_46263982的博客

查看详细资料
个人成就
  • 获得4次点赞
  • 内容获得7次评论
  • 获得5次收藏
创作历程
  • 2篇
    2021年
成就勋章
TA的专栏
  • 笔记
兴趣领域 设置
  • 大数据
    mysqlredis
  • 后端
    spring架构
  • 服务器
    linux
创作活动更多

AI大模型如何赋能电商行业,引领变革?

如何使用AI技术实现购物推荐、会员分类、商品定价等方面的创新应用?如何运用AI技术提高电商平台的销售效率和用户体验呢?欢迎分享您的看法

186人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

成人本科真的能找到工作吗

发布问题 2023.01.27 ·
5 回答

JSP书本查询问题,根据书本ID查询章节表里面的数据

答:

先多表 然后where不就好了

回答问题 2022.03.01

mac m1 上怎么用docker 安装oracle 数据库

答:

我也是这个问题

回答问题 2021.12.08

IDEA 2021版本右键没有Servlet

发布问题 2021.09.29 ·
1 回答

问个idea设置问题,帮帮我

答:

我的也会

回答问题 2021.09.29

Java输入窗口弹不出

答:

Java输入框???

回答问题 2021.07.21

数据库的题目,用mysql做,怎么做这道题,有大神解答吗?

答:

-- 1、创建数据库

create database company_info;

-- 打开数据库

use company_info;

 

-- 创建 Employee

create table Employee(

EmployeeID int primary key auto_increment,

EmployeeName char(8) not null,

EmployeeSex char(2) not null default '女',

Emplthday datetime ,

HiringTime datetime not null,

Specialty varchar(50),

Salary double

)

 

-- 创建Category

create table Category(

TypeID int primary key,

TypeNmae char(30) not null,

TypeNote char(50)

)

 

-- 创建 Product

create table Product(

ProductID int primary key,

Productname char(10) not null,

TypeID int,

foreign key(TypeID) references Category(TypeID),

UnitPrice double not null,

Inventory int not null

)

 

-- 创建 Customer

create table Customer(

CustomerID int primary key,

CompanyName char(30) not null,

ContactName char(8) not null,

Contactipone char(13),

address char(30),

Cod char(6)

 

)

 

 

-- 创建 P_order

create table P_order (

OrderID int primary key,

ProductID int,

foreign key(ProductID) references Product(ProductID),

number int not null,

EmployeeID int,

foreign key(EmployeeID) references Employee(EmployeeID),

CustomerID int,

foreign key(CustomerID) references Customer(CustomerID),

OrderTime datetime not null

)

回答问题 2021.06.13

JSP项目的增删改查和数据库

答:

这不是简单的增删改查嘛

回答问题 2021.06.13

Java聊天

Java聊天 一、界面 1、服务器界面 2、服务器用户在线列表 3、客户端登入 4、客户端注册 5、聊天界面 6、表情 二、功能 能够实现基本的文字发送、表情发送、动图发送 、抖动 可以把服务端放服务器实现不同网络聊天! ...
原创
发布博客 2021.03.21 ·
132 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

Java Swing图书管理系统

管理员界面 登入界面: 读者注册: 管理员主页面: 类别添加: 类别维护: 图书添加: 图书维护: 读者维护: 查询违约金: 缴纳违约金: 更改密码: 关于软件: 读者界面 读者登入: 读者界面的读者登入和读者注册与管理员相同 读者主页面: 读者借书: 读者还书: 图书排行榜: 系统帮助:系统中的更改密码、关于系统与管理的系统帮助类似! 数据库:SQL server数据库 整个项目代码 ...
原创
发布博客 2021.01.16 ·
553 阅读 ·
2 点赞 ·
7 评论 ·
5 收藏