由买买提看人间百态

topics

全部话题 - 话题: table2
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)
w*******9
发帖数: 1433
1
来自主题: Statistics版 - 急需高人指点!!
假设两个表都sort过了,而且table1里每个row都能唯一对应到table2中的某个row. 如
果不是这种情况可以在do loop里改改。
data match ( drop = continue );
retain matchid 1;
set data1;
continue = 1;
do while (continue);
set table2 point = matchid;
if x > = x2 then do;
if matchid < 2000000 then matchid + 1;
else continue = 0;
end;
else if x >= x1 and x < x2 then do;
output;
continue = 0;
end;
end;
run;
b******a
发帖数: 588
2
回去看federal reserve的原文,这个排序是根据SCF的方法,不包括巨富们,但也不是
单纯的年收入排序,如果你质疑SCF的methodology的话可以提出你的方法。但federal
reserve的报告里,统计了Fobes 400的财富状况,看Table2, fobes 400 (包括你提到
的那些超级富豪)他们的财富占社会总财富的2.2%,他们用这2.2%的资本控制了整个美
国?
即使是他们控制了整个美国,400人也是tg 25人政治局的16倍,呵呵
v*******e
发帖数: 11604
3

去google search:
sex ratio of two children family
第一个hit就是。看table 1和table2, 两孩家庭,0和2男孩的数量都大于expectation
,1男孩的数量都小于expectation。
t*******o
发帖数: 3
4
来自主题: Military版 - 美国人均预期寿命连续两年下降
美国的数据真相
点击:112 作者:佚名 来源:网络 发布时间:2018-04-09 11:13:37
  美国人均预期寿命连续两年下降。如果不告诉你国家名字,只是让你猜测的话
,你一定会认为,这发生在某个战乱中的国家。不幸的是,这种事情恰恰就发生在美国。
这个是最近几年美国负资产家庭的增加情况。到2016年,零资产或者负资产家庭已
经达到30.4%。也就是说,只要你有一块钱存款而没有负债,即使你是个流浪汉,你也
比30%的美国家庭富有。
1.webp (3).jpg
美国人到底有多穷?69%的美国人,存款少于1000美元。
不要以为他们没有存款的原因是买了股票,基金或者债券。这些玩意,最穷的50%
,只占0.5%
好多人说美国人很富有,确实,如果你找到了一个好职业,你的收入会很高很高。
但是实际上,绝大多数美国人很穷,只能靠救济和福利过活。
这个数字说,一半的美国人,他们的年平均收入低于25000美元。
这个表格说的是,美国平均收入40000多美元,中位数收入只有25000美元。中位数
是什么意思?50%收入高于这个数字,50%收入低于这个数字。
美国人为什么这么穷... 阅读全帖
k****u
发帖数: 346
5
来自主题: Classified版 - 出一台Thinkpad Table2
上次联想打折搞了一台Tablet2,用了几天就觉得没意思,一直扔那里。怕再过半年就
掉值的不行了,赶紧出掉把。盒子包装什么的都有,自己还买了一个套子,几次9.5成
新,用过不到5次。机子带笔,带AT&T LTE 插槽,有需要的PM我。
H*M
发帖数: 1268
6
不太清楚你的意思.你想在库中到max(date)的那一行,return那一行?
select *
from table1
where table1.date =
( select max(date) from table2)
j****s
发帖数: 881
7
来自主题: JobHunting版 - SQL 面试题 - 请高手指点
Select number_of_type_product_purchased , count (*) as number_of_customer
from
(select UserID, count (distinct ProductID) as number_of_type_product_
purchased from table1
Group by UserID) as table2
Group by number_of_type_product_purchased
Order by number_of_type_product_purchased
Go
d**e
发帖数: 6098
8
来自主题: JobHunting版 - sql的2个问题
create table thirdTable
as
select t1.col1, t2.col2
from table1 t1, table2 t2;
u*****o
发帖数: 1224
9
来自主题: JobHunting版 - 求教一个SQL的问题
最近在自学,想请教大家一个renaming的问题
用as可以实现两种renaming, rename一个column, 或者rename一个table
第一种:就是说比如我的table有个column A, 我把A的每个数×10000/2.5(想象一个
特别复杂的数学式,太复杂了以至于我必须rename成B)
然后我想select B-A>1的row
那我必须这么写:select A, A*1000/2.5 as B from...where A*1000/2.5 - A > 1
想用B代替calculated expression (select A, A*1000/2.5*800+6 as B from where B
-A>1) 就不work!!
第二种情况是rename一个table,
select T1.col1, T2.col2
from table1 as T1, table2 as T2 where...
这里rename table的话,我就可以用简写T1,T2出现在表达式里,甚至出现在renaming
的前面。。为什么第一个例子就不能用简写呢
汗,好难说清楚,不知有... 阅读全帖
F*******2
发帖数: 371
10
还有看table1和table2中ID1 ID2 的format是否一致
l*********8
发帖数: 4642
11
Use two SQLs:
INSERT INTO new_table
SELECT '80', t2.id2, t3.id3, sum(t1.value * t2.value)
FROM table1 t1
JOIN table2 t2
ON t1.id1 = t2.id1
GROUP BY t2.id2, t2.id3
INSERT INTO new_table
SELECT '81', t3.id2, t3.id3, sum(t1.value * t3.value)
FROM table1 t1
JOIN table3 t3
ON t1.id1 = t3.id1
GROUP BY t3.id2, t3.id3
m*****n
发帖数: 2152
12
select table1.address table2.id_num into new_table in DB

from
of
d*********0
发帖数: 12
13
来自主题: JobHunting版 - error of sql query in MS Access database
table1 和 table2 的schema必须一致, 如果用*, 两表结构可能(column)不一致,出错.
g*****i
发帖数: 2162
14
谢谢回复,但是你的回答似乎和irs的文件有些差别,具体看我下面的评论.能不能再解释
下?
不管能不能报,发票的问题也请大家解释下,谢谢.

pub 521 http://www.irs.gov/pub/irs-pdf/p521.pdf第8页上说:
You can deduct any costs of connecting or disconnecting utilities required
because you are moving your household goods, appliances, or personal effects.
form3903的line4说:
Enter the total amount your employer paid you for the expenses listed on
lines 1 and 2 that is not included in box 1 of your Form W-2 (wages). This
amount should be shown in box 12 of your Form W-2 with c... 阅读全帖
M****6
发帖数: 36
15
无娃,选择了 W-4 married jointly but withhold at higher single rate
page1
line 5 is 0
关于line 6 有疑问
在参考page2 的Table1 跟Table2的时候
表中wage的范围是参考税后的还是税前的? 就是我们预估wage是被扣税后的gross
payment还是税前的?真是confused~~
想找instruction,好像关于W-4的instruction还特别少,跪请知情人士解答~
M****6
发帖数: 36
16
谢谢回复。。。
我跟先生都在美国工作,所以C 是0, H应该是1,但根据要求得填写page2的 Two-
earners/Multiple Jobs worksheet,H就得update成0,这个时候就要参考table1和
table2决定 line 6 in page1。。。
M****6
发帖数: 36
17
来自主题: TAX版 - 关于W-4 夫妻 married jointly
无娃,夫妻都工作,选择了 W-4 married jointly but withhold at higher single
rate
page1
line 5 is 0
关于line 6 有疑问
在参考page2 的Table1 跟Table2的时候
表中wage的范围是参考税后的还是税前的? 就是我们预估wage是被扣税后的gross
payment还是税前的?真是confused~~
想找instruction,好像关于W-4的instruction还特别少,跪请知情人士解答~
j**********2
发帖数: 1495
18
来自主题: Working版 - 职场中年危机
http://www.bls.gov/cpi/mockups.htm
table1和table2列出了所有参与index的item
M****6
发帖数: 36
19
来自主题: I485版 - 关于W-4 ,夫妻married jointly
无娃,夫妻都工作,选择了 W-4 married jointly but withhold at higher single
rate
page1
line 5 is 0
关于line 6 有疑问
在参考page2 的Table1 跟Table2的时候
表中wage的范围是参考税后的还是税前的? 就是我们预估wage是被扣税后的gross
payment还是税前的?真是confused~~
想找instruction,好像关于W-4的instruction还特别少,跪请知情人士解答~
p*******t
发帖数: 532
20
来自主题: Immigration版 - EB1-a DIY Petition Letter 攻略
自从报告了我DIY EB-1A 无RFE两天获批准,有很多朋友问起Petition Letter, 我总结了我的经验如下,把一些自认为有用的表述与大家Share,欢迎补充。
一.开门见山
提出符合哪几条,三条即可。按现在的二步法,指出不仅仅符合,而且TOP!
I am submitting this letter in support of my petition for Aliens of
Extraordinary Ability under section 203(b)(1)(A) of the Immigration and
Nationality Act. The evidence submitted in the petition will prove that:
I. I am an alien of extraordinary ability on the basis of the following
facts:
1. I have authored important research articles in leading journals... 阅读全帖
b*********n
发帖数: 1258
21
来自主题: Immigration版 - EB1-a DIY Petition Letter 攻略
shan fa

in
significance
but
that
that
.5
Thomson Reuters, which is the world’s leading source of intelligent
information for
published
Scientific
such
MDLinx.
day
global
is
her
research
Table2).
which
I
million
group
four
in
4
data
is
risen
l******t
发帖数: 2243
22
来自主题: Immigration版 - EB1-a DIY Petition Letter 攻略
谢谢分享!

发信人: powerbait (Jigking), 信区: Immigration
标 题: EB1-a DIY Petition Letter 攻略
发信站: BBS 未名空间站 (Wed Mar 30 21:45:47 2011, 美东)
自从报告了我DIY EB-1A 获批,有很多朋友问起Petition Letter, 我总结了我的经
验如下,把一些自认为有用的表述与大家Share,欢迎补充。
一.开门见山
提出符合哪几条,三条即可。按现在的二步法,指出不仅仅符合,而且TOP!
I am submitting this letter in support of my petition for Aliens of
Extraordinary Ability under section 203(b)(1)(A) of the Immigration and
Nationality Act. The evidence submitted in the petition will prove that:
I. I am an alien of extraordinar... 阅读全帖
p*******t
发帖数: 532
23
来自主题: Immigration版 - EB1-a DIY Petition Letter 攻略
自从报告了我DIY EB-1A 无RFE两天获批准,有很多朋友问起Petition Letter, 我总结了我的经验如下,把一些自认为有用的表述与大家Share,欢迎补充。
一.开门见山
提出符合哪几条,三条即可。按现在的二步法,指出不仅仅符合,而且TOP!
I am submitting this letter in support of my petition for Aliens of
Extraordinary Ability under section 203(b)(1)(A) of the Immigration and
Nationality Act. The evidence submitted in the petition will prove that:
I. I am an alien of extraordinary ability on the basis of the following
facts:
1. I have authored important research articles in leading journals... 阅读全帖
b*********8
发帖数: 116
24
来自主题: Immigration版 - 分享eb1a RFE response letter和一些心得
DIY的材料准备,基本上都是在版上学到的。 现在我也把我的RFE的response letter分
享下。RFE的response其实也就是再重新组织材料,重新写的petition letter.
看到RFE, 我感觉IO根本没怎么看我的petition letter, 所以在准备response的时候
,都时时考虑,如果IO粗略扫一眼的话,他能不能get the point. 所以用了很多下划
线,加粗之类的highlight 关键词。格式上每一项,每一小项都分清楚。那些个比较复
杂的证据,如果不是非常强,宁可不要。
背景见http://www.mitbbs.com/article_t0/Immigration/32481591.html
Dear Sir or Madam:
Thank you for considering my immigrant petition as individuals with
extraordinary ability (EB-1A). I appreciate the opportunity to address
questions and pr... 阅读全帖
g*s
发帖数: 2277
25
来自主题: SanFrancisco版 - 请问这个query怎么做 (转载)
select temp2.locationid, IFNULL(table1.name,''),temp2.description from
(select locationid, name, description from (select distinct locationid from
table1) temp1 join table2 order by locationid,name) temp2
left join table1 on (temp2.locationid=table1.locationid and temp2.name=
table1.name);
y***u
发帖数: 82
26
这款茶几是椭圆的,边几是圆形的。overstock买的。
http://www.overstock.com/Home-Garden/Oval-3-piece-Table-Set/605
9成新,茶几的和我的皮沙发颜色太接近了,所以转让。适合有小孩子的朋友,小朋友
在客厅跑不会被撞到角,这也是我买这款的初衷。
有兴趣的朋友请留言或者站内联系。多谢
l***x
发帖数: 1761
27
We’re Sorry.
The page you’re looking for could not be found.
y***u
发帖数: 82
28
http://www.overstock.com/Home-Garden/Oval-3-piece-Table-Set/605
是这个。
图片不知道怎么在跟帖里粘上来
s********y
发帖数: 161
29
报个价吧
x*****8
发帖数: 10683
30
来自主题: WashingtonDC版 - 有熟悉Burke一带房子的吗?
Burke的初/高中主要是Lake Braddock SS和Robinson SS。前者有AP,后者有IB。
虽然这两个学校的学生都是TJHSST挑剩下的,但他们学校数学教学还可以,我辅导过的
两个学校各有一个亚裔学生SAT I Math 800的,他们总分都在2300至2350,不过一个去
了Georgia Tech,另一个只去了George Mason。可见亚裔SAT I考高分对于上名牌大学
没有太大用处。
http://www.fcps.edu/cco/pr/satact/2012/table2.pdf
G****6
发帖数: 4291
31
来自主题: WashingtonDC版 - VA高中排名怎么排?
这里是近3年的fairfax county public high schools' SAT分数, 供参考。
http://www.fcps.edu/cco/pr/satact/2014/Table2.pdf
t*******y
发帖数: 10477
32
来自主题: Fishing版 - 问个数据库问题,即删
change table1 to table2 and it should work.
w***m
发帖数: 10498
33
来自主题: MJ版 - creepy...........
恩,table2 有鬼呀。
b****g
发帖数: 7311
34
已经前8了
ittf.com/ittv
table2
table 1 是中国女队

发帖数: 1
35
◇◇新语丝(www.xys.org)(newxys.com)(xys10.dxiong.com)◇◇
举报南京大学生命学院院长华子春学术不端
方先生您好!
我们反映南京大学生命学院院长、长江、杰青、 国家科技进步奖获得者、
国重主任华子春长期存在学术不端问题。 附件是我们发现的第一批四组共9篇文
章。
1. 2000-C和2000-E两篇文章皆为英文稿, 分布发表于南京大学学报和
Protein Expression and Purification。华教授是通讯作者。 南京大学学报的
内容系于后者的文字上做了删掉,无文字改写。 例如:
前者的第一、二段:
Human cardiac-specific homeobox protein (hCsx2 or Nkx2.5) encodes
a homeobox transcription factor of 323 amino acids containing six
cysteines and is composed of three domains: the TN-domain, the
homeobox- domain, and t... 阅读全帖
B*****g
发帖数: 34098
36
来自主题: BuildingWeb版 - 动态网页一问
看看下面的code,我猜是用ajax作的



C


gn="center" id="table1">




v****s
发帖数: 1112
37
来自主题: CS版 - 多线程优化求助!
最近赶deadline,一个巨大无比的运算,已经吃掉我supercomputer account上的 5000
core hour了。。。。
不是很复杂,就是运算量太大了,如附图。
每个步骤(一共要算大概500,000次):
table 1 and table 2已经load到内存了,他们的长度各自是M, N. M,N can be upto 1
million. 要计算那个result table的每个cell,每个cell只要取对应位置的table1[i
,:], table2[j,:], 然后计算出resulttable[i,j].
现在我做的优化是把所有data都load到内存,然后搞2个for loop去sequentially
compute,但是这样太不efficient了,估计下周都没法搞完。。。大牛给出出主意,怎
么设计multi thread来加速!谢谢!!
h**********c
发帖数: 4120
38
来自主题: CS版 - 多线程优化求助!
可以用一个loop
Most mpi just puts a single line here, e.g. c++
for i = M*N
do sth with table11[i%m] and table2[i%m%n]
把你们单位supercomputer 帐号给我,我 telnet.超级计算机我还没霍霍过呢,我们系
有个破sparc才800m.
不求任何报酬,抢占国际市场先。

5000
1
[i
b***i
发帖数: 3043
39
来自主题: CS版 - 多线程优化求助!
巨型机 我做过,48个核心,可以快30倍以上。
而且巨型机内存巨大。
你看看那一部分可以分开,然后直接组合。比如你可以把table1分成48组,一个线程算
table1的一组和table2的结果,然后直接合并不就行了。
虽然你算得不是乘法,但是分成线程的原则是一样的。

5000
1
[i
w*i
发帖数: 63
40
来自主题: Database版 - Urgent help needed, please
A job must done before tomorrow, please help...
we have two tables here,
table 1,
CREATE TABLE dbo.eai_inv_hdr
(
invid numeric(9,0) IDENTITY,
vendorid varchar(10) NOT NULL,
invnbr int NOT NULL,
batchid varchar(10) NOT NULL,
status varchar(1) NOT NULL
)
table2,
CREATE TABLE dbo.eai_inv_dtl
(
invamtid numeric(9,0) IDENTITY,
invid numeric(9,0) NOT NULL,
invamtcd varchar(10) NOT NULL,
invamt decimal(13,2) NOT NULL
)
table example:
w*********n
发帖数: 84
41
来自主题: Database版 - how to separate the table
Some personal idea:
Do you consider the expansion of the languages?
if someday, another language is introduced, the 2nd solution will spend
more effort to achieve; in this sense the 1st one is good.
To manipulate a bigger record like the table2 in 2nd solution will
cost too much. I recommend you to calculate the block size and the record
size, you will get a better comparison among the two.
Remember the Normal Form consideration?
In the 1st solution, it's in 3NF, better than 2nd, which has trans
a****u
发帖数: 3
42
来自主题: Database版 - 一个有关查询的语句
我写了一个语句:select id from table1 as a inner join table2
as b on a.field1=b.field1 and a.field2 in (1,2) where
b.field2='str'
在sql server中通过了,但我想在access中使用,可能是inner join
出了问题,希望指教,谢谢!
a****m
发帖数: 2
43
来自主题: Database版 - mysql question
mysql:
how to select field from a table, and the field not in another table's
field?
select * from table1 where table1.field not in (select field from table2)
but mysql does not support not in (sub-select)
i know i can use "join", but it really takes time.
thanks a lot.
s***m
发帖数: 28
44
来自主题: Database版 - Export and import question.
Hi,
I am trying to create a test oracle database from a life oracle database.
Both databases have exact same schemas and are on two machines running Linux.
Now i already have everything in the test database except the table data. I
need to import the data from the life database. I have tried the following to
export data from life database. This is my parfile.
##############expfile.par########################
userid=user/passwd@db
file=expdat1.dmp
log=exp.log
tables=table1,table2,....
#######
x**m
发帖数: 941
45
我的需求是在多个表的多个字段中进行全文查找, 像:
table1.field1 like '%keyword1%' AND table1.field1 like '%keyword2%'
OR table2.field1 like '%keyword1%'...
除了PostgreSQL的tsearch和OpenFTS, 还有没有方便点的东西?
谢谢.
b*e
发帖数: 3845
46
来自主题: Database版 - SQL question...
don't understand your question. Do you mean you
want to get
name1,name2
name1,name2
...
name1,name2
for all the rows of table 2?
let me try:
select T1.name, T2.name from table1 as T1, table1 as T2, table2 as T3
where T1.ID = T3.Id and T2.Id=T3.ID
let me know if this works.
k*******d
发帖数: 237
47
来自主题: Database版 - SQL question...

Select T2.id1, T1.Name, T2.id2, T3.Name
From Table1 T1, Table2 T2, Table1 T3
Where T2.id1=T1.ID and T2.id2=T3.ID
f***g
发帖数: 10
48
来自主题: Database版 - SQL question: update a field

If using SQL Server, these 2 statements can be combined as one like this
UPDATE table1
SET a = TEMP2.maxB
FROM table1
INNER JOIN (select id, max(b) as maxB from table2 group by id) TEMP2
ON table1.id = TEMP2.id
Not sure about other DBs such as Oracle...
z***y
发帖数: 7151
49
来自主题: Database版 - 请教一个oracle下的view的问题

If you don't care about the duplicated record:
Try use UNION ALL
create view vw_YourView
as
select [fieldList]
from table1
UNION ALL
select [same fieldList]
from table2
otherwise, use UNION.
c**t
发帖数: 2744
50
来自主题: Database版 - 请教set和select 的区别
Interesting. I thought it's rather than that.
I have a SP to do some calculation (as follows). If I use set (--###),
some of '--*' will print " 390 0 ", after that all *B will be 0.
If I use select the two numbers are always the same. That's why I brought
this question.
while (@@fetch_status <> -1)
select @v1=isnull(field, 0) from table1 where @cur_x ..
select @v2=isnull(field, 0) from table2 where @cur_x ...
set @v1B=@v1 --###
set @v2B=@v2 --###
print cast(@v1 as varchar)
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)