avatar
Which design is better?# Database - 数据库
s*q
1
刚开始学油画,想问一下一般都用什么来调色?我现在在用松节油,感觉味道好重。
顺便附上两份临摹,请指教。
avatar
s*e
2
Design a table managing students and classes that a student takes.
There are two ways:
1. Using a vector as a column. The number of bits is equal to the number of
classes. "1" means enrolling in a class. "0" means not.
StudentID Class-vector
100 00110100
101 11010000
2. Use class name as a column.
StudentID ClassName
100 class3
100 class4
100 class6
101 class1
101 class2
101 class4
The number of class is not fixed. So
avatar
i*a
3
可以用Gamsol~
临的不错,第一幅葡萄的立体表现好。可以再加强对比度,注意润泽和细节。

【在 s*******q 的大作中提到】
: 刚开始学油画,想问一下一般都用什么来调色?我现在在用松节油,感觉味道好重。
: 顺便附上两份临摹,请指教。

avatar
B*g
4
2
Create 2 index

of

【在 s****e 的大作中提到】
: Design a table managing students and classes that a student takes.
: There are two ways:
: 1. Using a vector as a column. The number of bits is equal to the number of
: classes. "1" means enrolling in a class. "0" means not.
: StudentID Class-vector
: 100 00110100
: 101 11010000
: 2. Use class name as a column.
: StudentID ClassName
: 100 class3

avatar
s*q
5
谢谢你!
avatar
s*e
6
Thanks.
How about the following two indexes:
1.
CREATE UNIQUE INDEX sid ON mytable (StudentID, ClassName)
This is for search like: SELECT * WHERE mytable.StudentID==100
2.
CREATE UNIQUE INDEX class ON mytable (ClassName, StudentID)
This is for search like: SELECT * WHERE mytable.ClassName==class2

【在 B*****g 的大作中提到】
: 2
: Create 2 index
:
: of

avatar
c*g
7
你以前画过水彩水粉?

【在 s*******q 的大作中提到】
: 刚开始学油画,想问一下一般都用什么来调色?我现在在用松节油,感觉味道好重。
: 顺便附上两份临摹,请指教。

avatar
B*g
8
I think 1 is only good (compare to index(StudentID))for
SELECT StudentID, ClassName WHERE mytable.StudentID==100
But if you server is "strong", I think your design is good.

【在 s****e 的大作中提到】
: Thanks.
: How about the following two indexes:
: 1.
: CREATE UNIQUE INDEX sid ON mytable (StudentID, ClassName)
: This is for search like: SELECT * WHERE mytable.StudentID==100
: 2.
: CREATE UNIQUE INDEX class ON mytable (ClassName, StudentID)
: This is for search like: SELECT * WHERE mytable.ClassName==class2

avatar
s*q
9
没有,就是小学美术课学过一点。我是不是应该从水彩水粉入手学?

【在 c*****g 的大作中提到】
: 你以前画过水彩水粉?
avatar
n*6
10
Yeah.
It's better to understand what are the most frequently used query.
If a lot of request for
SELECT StudentID, ClassName WHERE mytable.Student ID = 100
then it is good.

【在 B*****g 的大作中提到】
: I think 1 is only good (compare to index(StudentID))for
: SELECT StudentID, ClassName WHERE mytable.StudentID==100
: But if you server is "strong", I think your design is good.

avatar
A*2
11
第一张画得不错,画油画用依依推荐的也行,我也有一大瓶。
水粉或丙烯几乎没有味道,颜色和油画比稍稍有差别,
水粉好像画的时候不要加太多水比较好,丙烯可以就用水调,
这两种都比油画颜料快干得多。

【在 s*******q 的大作中提到】
: 没有,就是小学美术课学过一点。我是不是应该从水彩水粉入手学?
avatar
j*n
12
figure out what is many-to-many relationship.
avatar
A*2
13
我觉得水粉画出来的画比丙烯画更接近油画的色彩,
但是不如丙烯画好保存。大家有没有同感?
还是我买的丙烯颜料太亮了?
avatar
s*e
14
If I create index only on the first column, like:
CREATE INDEX sid ON mytable (StudentID)
The index will not be an unique index. The following query will return many
rows, right?
SELECT StudentID, ClassName WHERE mytable.Student ID = 100

【在 n********6 的大作中提到】
: Yeah.
: It's better to understand what are the most frequently used query.
: If a lot of request for
: SELECT StudentID, ClassName WHERE mytable.Student ID = 100
: then it is good.

avatar
i*a
15
嗯,前阵油画练多了,被油画弄的有点鼻子难受了。。。最近丙烯和油画混着练。。。
可惜水粉颜料不好买,否则水粉快速练笔真不错呀~:)

【在 A********2 的大作中提到】
: 第一张画得不错,画油画用依依推荐的也行,我也有一大瓶。
: 水粉或丙烯几乎没有味道,颜色和油画比稍稍有差别,
: 水粉好像画的时候不要加太多水比较好,丙烯可以就用水调,
: 这两种都比油画颜料快干得多。

avatar
c*g
16
我觉得不需要,我认识不少人,画色彩一上来就是油画。

【在 s*******q 的大作中提到】
: 没有,就是小学美术课学过一点。我是不是应该从水彩水粉入手学?
avatar
e*5
17
哦好

【在 c*****g 的大作中提到】
: 我觉得不需要,我认识不少人,画色彩一上来就是油画。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。