1.创建表时并创建外键约束 create table score( scoreID int primary key, stuID int , score int constraint ck_score check(score between 0 and 100), courseName varcha ...
分类:
数据库 时间:
2020-09-24 22:03:46
阅读次数:
54
常见的数据标准化方法有以下6种: 1、Min-Max标准化 Min-Max标准化是指对原始数据进行线性变换,将值映射到[0,1]之间 2、Z-Score标准化 Z-Score(也叫Standard Score,标准分数)标准化是指:基于原始数据的均值(mean)和标准差(standard devia ...
分类:
其他好文 时间:
2020-09-23 23:26:39
阅读次数:
62
先建一个新表: CREATE TABLE [StudentScores] ( [UserName] NVARCHAR(20), --学生姓名 [Subject] NVARCHAR(30), --科目 [Score] FLOAT, --成绩 ) INSERT INTO [StudentScores] ...
分类:
数据库 时间:
2020-09-18 02:33:39
阅读次数:
60
A表id aname 1 张三2 李四 B表id score aid bname year1 89 1 语文 20202 91 1 数学 2019 select aname,bname,score from A left join B on A.id=B.aid where year='2015' ...
分类:
数据库 时间:
2020-09-17 20:35:28
阅读次数:
90
#include <easyx.h> #include <conio.h> #include <list> using namespace std; int sx = 25; int sy = 25; int x; int y; char ch = 'd'; char score[12]; int ...
分类:
其他好文 时间:
2020-09-17 16:07:41
阅读次数:
25
(1)rank over(order by 列名) 该函数只适用于oracle 例: 1 select sid, sname, rank() over (order by score) as srank from sc; (2)rank over(partition by 列名,order by 列 ...
分类:
其他好文 时间:
2020-09-17 13:16:08
阅读次数:
34
DDL:对表或者表的属性进行了改变 create:创建表创建用户创建视图 创建表 create table student(id int,score int) ; student后面与括号之间可以有空格可以没有 创建用户 create user liuyifei identified by 4852 ...
分类:
数据库 时间:
2020-09-17 12:26:40
阅读次数:
33
语句的英文:statement。 声明语句: 作用:声明局部变量或者局部常量。 语句格式:本地变量/本地常量类型 本地变量或本地常量声明器 示例:本地变量声明语句 var score = 95; int x, y, z; x = 100; y = 90; z = x + y; 解析:int 为本地变 ...
--查询分析器中执行:--建表table1,table2:create table table1(id int,name varchar(10))create table table2(id int,score int)insert into table1 select 1,‘lee‘insert ...
分类:
其他好文 时间:
2020-08-24 16:59:44
阅读次数:
74
一、CART算法的实现 #encoding:utf-8 from sklearn.model_selection import train_test_split from sklearn.metrics import accuracy_score from sklearn.tree import D ...
分类:
编程语言 时间:
2020-08-18 15:46:03
阅读次数:
110