由买买提看人间百态

topics

全部话题 - 话题: joins
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
t****a
发帖数: 554
1
BBS ID KGS ID
Pront pront(1k)
akite akite(3k) join, but busy
Civ Civ(4k) join
crazyman Vancomycin(4k) join
yaofei swfhx(4k) join
Augusto jinao(5k) busy
teaheart teaheart(7k) join, but busy, prefer fold game
snowcar snowcar(7k)
jadefish jadefish(8k) prefer fold game
pondbear pondbear(10k)
tasita tasita(10k) join
zs25 borntolose(10k) join, but busy
这是目前有回应的名单,基本参加名单如下。
s*****n
发帖数: 2174
2
来自主题: Database版 - 请问个join的问题
看到不同人写的sql语句用不用的join方法, 比如下面这两种写法:
SELECT
table1.id
FROM
table1
INNER JOIN table2 ON table1.id = table2.id
INNER JOIN table3 ON table1.id = table3.id
INNER JOIN table4 ON table1.id = table4.id
WHERE
table1.value > 0
AND table2.value > 0
AND table3.value > 0
AND table4.value > 0;
SELECT
table1.id
FROM
table1
INNER JOIN table2 ON table1.id = table2.id
AND table2.value > 0
INNER JOIN table3 ON table1.id = table3.id
AND table3.value > 0
INNER JOIN table4 ON table
O***T
发帖数: 124
3
1 Alias: 一种带as, 一种不带
我平时写都不带as,就是为了省事,带as可能就是看着比较清楚,其实没有任何区别
2 join: 一种写join... on.., 一种就用where
用join可以明确是left join, right join。where就不可以了
我个人偏好用Join,这样有时候5,6个table join的时候,看的特别清楚。
s********e
发帖数: 340
4
问一个面试题: sql中的 inner join 和 outer join的区别?
inner join我明白。 outer join 看到网上说明很多,但是都是罗罗嗦嗦的说一大堆也
没明白。有谁能用简单的话说明白什么是outer join?
c******r
发帖数: 225
5
inner join: intersect of two tables
outer join: union of two tables
Left outer join returns all matched rows, plus all unmatched rows from the
table on the left of the ON-clause.
Full outer join returns all (matched or unmatched) rows from both sides of
the ON-clause.
further question that you may consider: what's the difference of full outer join
and union all?

发帖数: 1
6
前几天发了一个贴子问未名里的朋友能不能分享一下follow to join跟随加入的经验,
结果得到的回复很少,在为数极少的回复里也是寥寥数语。我现在是在485 pending.
老婆现在在国内,就盼着赶紧绿卡下来可以给她申请,就是用follow to join的方式。
前一段时间在网上搜集了一些相关的资料,在这里总结一下。希望对有这方面需要的朋
友有所帮助,也是为了自己能理一下头绪,为今后的申请做好准备。即使是要找律师,
也不要被律师给忽悠了,先做到心中有数。
下面的三个段落,摘自:https://www.avvo.com/legal-answers/i-824--follow-to-
join-for-spouse--process-after-us-2236214.html. 这里所摘录的是一个关于follow
to join 的问题的最佳答案。
You may file an I-824 concurrently with your I-485 (or any time before the I
-485 is approved) to request following-to... 阅读全帖
s********k
发帖数: 6180
7
【 以下文字转载自 JobHunting 讨论区 】
发信人: silverhawk (silverhawk), 信区: JobHunting
标 题: 一直没有很好理解thread join itself,哪位解惑一下
发信站: BBS 未名空间站 (Wed May 2 20:30:51 2012, 美东)
thread join目的是block调用thread知道特定thread结束。那thread join itself是为
什么?难道自己block 自己?
下面是一个简单例子伪代码(几乎所有编程语言都支持)
t1=threadstart();
t2=threadstart();
t1.join()
t2.join()
这里面我首先开始thread t1,然后我调用t1.join,那意思是t1 被block?直到t1自己
运行完?不是太理解这个意思,哪位解惑一下?
s********k
发帖数: 6180
8
【 以下文字转载自 JobHunting 讨论区 】
发信人: silverhawk (silverhawk), 信区: JobHunting
标 题: 一直没有很好理解thread join itself,哪位解惑一下
发信站: BBS 未名空间站 (Wed May 2 20:30:51 2012, 美东)
thread join目的是block调用thread知道特定thread结束。那thread join itself是为
什么?难道自己block 自己?
下面是一个简单例子伪代码(几乎所有编程语言都支持)
t1=threadstart();
t2=threadstart();
t1.join()
t2.join()
这里面我首先开始thread t1,然后我调用t1.join,那意思是t1 被block?直到t1自己
运行完?不是太理解这个意思,哪位解惑一下?
g******7
发帖数: 1433
9
来自主题: Statistics版 - 一个sas里的join问题
经常看到别人code里一个join在proc sql里,找了很久没发现这种用法,不知道这里的
join是inner join的意思吗?
例如
proc sql;
create table test as
select 。。。。
from a
join a2 on a.ID = a2.ID
left join a3 on a3.IBD = a2.IBD
join a4 on a4.state_cd = a3.st;
quit;
m********l
发帖数: 4394
10
lol, say no better than no say.
Inner join joins ONLY those that matches
Outer join returns everything (combining those that matches)
see:
Venn Diagram

outer join
k*****u
发帖数: 1688
11
sas里面proc sql这样来的:首先得到两个集合AB的笛卡尔积,inner join选择
condition即在A又在B的,left join选择conditiion在A中的,right join选择
condition在B中的,outer join在A或者在B中的。
s********k
发帖数: 6180
12
thread join目的是block调用thread知道特定thread结束。那thread join itself是为
什么?难道自己block 自己?
下面是一个简单例子伪代码(几乎所有编程语言都支持)
t1=threadstart();
t2=threadstart();
t1.join()
t2.join()
这里面我首先开始thread t1,然后我调用t1.join,那意思是t1 被block?直到t1自己
运行完?不是太理解这个意思,哪位解惑一下?
h***u
发帖数: 61
13
大家好,帮朋友请教关于”follow to join"的问题。
朋友现在是L1A,人在美国,他所在公司正在给他申请EB-1C,140和485等材料还没有正
式提交到USCIS。
朋友的老婆和孩子在中国国内,目前没有办理过任何美国签证。因为老婆的工作非常好
,并且孩子还小,所以老婆孩子在未来半年到一年内还没有来美国的打算。
朋友想趁他申请EB1C的时候就帮老婆孩子申请好,但是他公司负责他case的工作人员说
公司不受理“consulate processing”,让他自己找律师做“follow to join”。
朋友现在决定为老婆孩子申请“follow to join", 现在他主要有如下一些问题:
1. 是不是在他的EB1C获批之前,他必须file他老婆孩子的申请材料?还是说他可以等
到他的EB1C获批之后,他再慢慢帮他老婆孩子申请?毕竟他们现在还不打算来美国,朋
友正在给老婆做思想工作,但又不想耽误自己的申请。
2. "follow to join"获批的结果和时间会不会影响到朋友本人的EB1C获批的结果和时
间?
3. 根据以上介绍的情况,"follow to join"大概需要... 阅读全帖
l******n
发帖数: 11737
14
【 以下文字转载自 Playstation3 俱乐部 】
发信人: lalaphin (orpheus), 信区: Playstation3
标 题: UNCHARTED 3 – Join the Fortune Hunters’ Club
发信站: BBS 未名空间站 (Tue Oct 18 15:29:36 2011, 美东)
http://blog.us.playstation.com/2011/10/18/uncharted-3-join-the-
hunters-club/
UNCHARTED 3 – Join the Fortune Hunters’ Club
Are you a Fortune Hunter who is dying to get your hands on UNCHARTED 3:
Drake’s Deception in just two short weeks? Can’t wait to find out what
Naughty Dog has in store for you after you and Nathan Drake “UNCOV... 阅读全帖
f*******2
发帖数: 239
15
要求
有两个6万和4万的数据需要做full outer join 把两个表连到一个表里面去。
但是数据只是。csv文件,没有可以连的网络数据库
这样的情况,我可以用什么工具来做?
现在的尝试
1. Mysql workbench
下载了,但是最开始的一步就不行,没有数据库可以连上,所有的功能都不能用,当然
也没法import csv文件
求解释?
2. 下载了xampp 可以用phpmyadmin
但是,1,文件上次大小受限。按照网上的步骤修改了。出现的问题是,在写mysql
code的时候不能用full outer join,也不能用union all(left join+right join 然
后union all 去解决 full join 的问题)
查找了以上的问题,说是phpmyadmin 的版本bug,升级了版本后,居然连import都做不
了了。各种问题啊。。。
麻烦大神们指点。
f*******2
发帖数: 239
16
要求
有两个6万和4万的数据需要做full outer join 把两个表连到一个表里面去。
但是数据只是。csv文件,没有可以连的网络数据库
这样的情况,我可以用什么工具来做?
现在的尝试
1. Mysql workbench
下载了,但是最开始的一步就不行,没有数据库可以连上,所有的功能都不能用,当然
也没法import csv文件
求解释?
2. 下载了xampp 可以用phpmyadmin
但是,1,文件上次大小受限。按照网上的步骤修改了。出现的问题是,在写mysql
code的时候不能用full outer join,也不能用union all(left join+right join 然
后union all 去解决 full join 的问题)
查找了以上的问题,说是phpmyadmin 的版本bug,升级了版本后,居然连import都做不
了了。各种问题啊。。。
麻烦大神们指点。
w******g
发帖数: 189
17
来自主题: Programming版 - Spark上怎么join avro format的数据?
看见这里有scala 和spark的大牛,问问一个困扰多时的问题。Spark上怎么join avro
format的数据?
如果是plain text,用TAB分割开的数据,做join操作很容易就是把A和B表弄成(key,
value)格式的rdd再调用A.join(B)就可以了。但是我现在要join avro格式的数据,还
是A和B,格式都是(STRING, GenericRecord)。读是可以都的,因为可以执行first和
count的action,但是join貌似要shuffle,shuffle的话要serialize 临时数据。已经
用了kyro的serializer register A和B类了,还是不行。大牛谁有经验或者可以run的
例子吗?
w*******y
发帖数: 60932
18
This month I decided that I wanted to join "Be the Match" to be entered into
the database for bone marrow donors. I knew that it was going to cost $100
in order to offset the cost of the lab costs to test my cells. However,
when I went to sign up yesterday it was nice to see that the American
Express Foundation has issued a grant to pay for the cost of being
registered with "Be the Match" during the month of January.
Simple go to:
www.marrow.org:
http://www.marrow.org
DETAILS:
When you join th... 阅读全帖
g********d
发帖数: 4174
19
来自主题: QueerNews版 - GOP Lobbyist Joins Strategy to Repeal DOMA
Posted on Advocate.com October 02, 2011 11:40:00 AM ET
GOP Lobbyist Joins Strategy to Repeal DOMA
By Andrew Harmon
Jo Deutsch and Kathryn Lehman When Jo Deutsch and Kathryn Lehman are en
route to Capitol Hill for meetings with Republicans, they find it best to
avoid certain conversations. The debt ceiling is off the table. So are their
respective political resumes — one has worked for Barbara Boxer, the other
Newt Gingrich. The two lobbyists could not be more divergent on most issues
— except re... 阅读全帖
P*****t
发帖数: 4978
20
Who is next? NCSU?
--------------------
Boston University has joined the Association of American Universities (AAU),
an elite organization of 61 leading research universities in the United
States and Canada. BU, one of only 4 universities invited to join the group
since 2000, becomes the 62nd member. In the Boston area, only Harvard, MIT,
and Brandeis are also members.
Hunter R. Rawlings III, president of the AAU, announced Monday morning that
President Robert A. Brown had accepted the associati... 阅读全帖
b***i
发帖数: 3043
21
除了t1 t2外,还有个生成这两个线程的主线程,所以让主线程等待两个线程结束
测试
t1=threadstart();
t2=threadstart();
print something
t1.join()
t2.join()
t1=threadstart();
t2=threadstart();
t1.join()
t2.join()
print something
r******r
发帖数: 700
22
这里 t1.join, t2.join 有顺序吗,也就是它与 t2.join, t1.join 是一样的效果吧
P*****k
发帖数: 1567
23
Join the AAdvantage DiningSM program now and start by earning 1,000 American
Airlines AAdvantage® bonus miles with the New Member Bonus!
Members earn 3 AAdvantage® miles for every dollar they spend dining at
thousands of program restaurants, bars and clubs from coast to coast. As an
added welcome, you can earn 1,000 AAdvantage® bonus miles just for
dining at participating locations after you join.
Here’s how to get the ball rolling:
1 Join the AAdvantage DiningSM program and re... 阅读全帖
o**********d
发帖数: 98
24
Join Amazon Mom for FREE and get Prime Shipping for 3 months. click below
to join
http://www.amazon.com/gp/mom/signup/info
FREE Two-Day Shipping with Amazon Prime: When you join Amazon Mom, you
will receive FREE Two-Day Shipping with Amazon Prime for the first 3
months of your membership. For each $25 you spend within a single order in
the Baby store, we’ll grant you an additional month of Amazon Prime
shipping benefits. You can earn up to one year from the date you joined
Amazon Mom.
30% off se
v***a
发帖数: 23651
25
【 以下文字转载自 EB23 讨论区 】
发信人: vilta (熊), 信区: EB23
标 题: 请问在美国境内的follow to join
发信站: BBS 未名空间站 (Tue Jul 14 09:58:51 2015, 美东)
做了一些research发现
很多人说EB类配偶合法在美国境内的情况下
follow to join实际上是适用485表格的
b. My spouse or parent applied for adjustment of status or was granted
lawful permanent residence in an immigrant visa category that allows
derivative status for spouses and children.
条款
那么这里的"follow to join"是不是只是借用了一个term,而不是移民局定义的需要交
824表格的follow to join呢?
具体操作是不是和我们普通交485 package一样的而不需要交824表格?
l*********g
发帖数: 177
26
本人目前485 pending,走eb3的
请教大家,今天偶然看到这个新浪的link关于follow to join
http://dailynews.sina.com/bg/imm/information/chinapress/20110927/02032800624.html
文章里面关于谁可以申请follow to join的条件1这么写:
“(1)首先,只有主申請人的直系親屬才有享受跟進申請的權利。直系親屬包括配偶
、小於21歲的未婚子女和大於21歲的主申請人的父母。”
这儿提到了主申请人的父母,我想问问大家,是真的可以让我的父母follow to join用
我的PD来申请绿卡么? 我google了好久,都没发现相关说到这个的,都是说配偶小孩
follow to join。虽然我觉得应该不大可能,但是还是想向版上各位能人确认一下。
先谢谢啦。
s*********4
发帖数: 3362
27
Notre Dame to join Atlantic Coast Conference; football stays independent but
brings 5 games annually to ACC
The University of Notre Dame accepted an invitation today (Sept. 12) to
become a member of the Atlantic Coast Conference (ACC) in all sports except
football.
Most Notre Dame athletics programs have been members of the
Big East Conference since 1995 after previously competing in the Midwestern
Collegiate Conference, North Star Conference and as independents. Jack
Swarbrick, ... 阅读全帖
s*****n
发帖数: 2174
28
来自主题: Database版 - 请问个join的问题
那也就是说不管怎么写, query optimzer都是先filter掉不相关的rows, 然后才开始
join了?
现在的问题是我要join的几个table都很大,
我希望在真正join之前, 能先根据一些确定的条件进行pre-filter,
考虑先给每个table做一个select ... where 生成temp table,
然后再join这四个temp tables.
如果query optimizer都是先filter的话, 那这样做就没必要了.
i*******d
发帖数: 81
29
CTE + 一串 left outer join 可以实现。
SQL Server 三个table:
create table t1( id int, value1 int);
create table t2( id int, value2 int);
create table t3( id int, value3 int);
insert into t1 values (2,2),(3,3);
insert into t2 values (1,1),(3,3);
insert into t3 values (1,1),(2,2);
with idtable as
(select id from (select id from t1 union select id from t2 union
select id from t3) as t)
select idtable.id,isnull(value1,-1) as value1, isnull(value2,-1) as value2,
isnull(value3,-1) as value3
from idtable left ou... 阅读全帖
s*****d
发帖数: 7
30
来自主题: Database版 - 问个SQL问题- partial outer join
谢谢Beijing and NaCN. 说的是不清楚,例子给得也不好。实际数据太大太复杂,全是
多对多,没有任何key. 总之就是,一个column 要先 inner join, 另一个 column 在
column1 inner join 之后 再 outer join. 但是第一个inner join 两个 columns 都
要 ON. Like on t1.c1=t2.c11 and t1.c2=t2.c22, 但是这样又把t1.c2中的NULL
filtered out了。 NaCN的方法看起来可行,我去真数据上试试看。
再一次谢谢你们。
Y***e
发帖数: 1030
31
在不同的资料里看到Alias和join 不同的写法,请教各位前辈是怎么回事。是在不同的
环境下的区别嘛?
1 Alias: 一种带as, 一种不带
SELECT column_name AS alias_column_name
FROM table_name As alias table_name;

SELECT column_name alias_column_name
FROM table_name alias table_name;
为什么我在各种教材里看到这两种写法?
2 join: 一种写join... on.., 一种就用where
SELECT column_name(s)
FROM table1
JOIN table2
ON table1.column_name=table2.column_name;

SELECT table1_column_name_1, table2_column_name_2
FROM table1, table2
where table1.column_name=table2.column_name;
而且下面只用where 这种写... 阅读全帖
c***z
发帖数: 6348
32
【 以下文字转载自 DataSciences 讨论区 】
发信人: chaoz (面朝大海,吃碗凉皮), 信区: DataSciences
标 题: [Pig Progamming] Pig Latin join problem
发信站: BBS 未名空间站 (Tue Jan 28 20:00:22 2014, 美东)
Hi all,
Just wondering if any of you had the same problem and if you know the cause.
I have a dataset of site-visitor pairs, which records daily visits to
websites.
While filtering the data using domain "espn.com", there are 306 unique
visitors; while joining the data with the list of domain names, I only got
176 unique visitors to "esp... 阅读全帖
t********1
发帖数: 799
33
来自主题: Statistics版 - 急问 sql multiple left join, thanks!!
select *
FROM A
LEFT JOIN B
ON A.ID = B.ID
LEFT JOIN C
ON C.ID = A.ID
LEFT JOIN D
ON D.date = C.date
请问这种multiple join的顺序是怎样的?thank you very much.
S******3
发帖数: 66
34
来自主题: Statistics版 - 怎样用hash table做full join?
SAS hash can do inner join/left join easily.
just for learning purpose, full join is simply a left join + all records in
2nd table that can't be found in the 1st table. By this way, you need load
both table into hash (one full table + one table with key only); and you
need scan both tables once completely, so may not worth much of Hash.
z*****h
发帖数: 111
35
求助高手,在sas中经常需要以下操作
proc sql;
create table tb as select
a.*, b.val
from left a left join right b
on a.ID=b.ID
and 1<=intck('month', b.date, a.date)<=60;
quit;
这个方法很慢,看了下用hash,貌似只能实现equality join. 有想过用proc expand
把left表中的每一个date扩展成整个过去的60个月,然后用date step merge 或者
hash. 这样就能把inequality join 变成 equality join, 但是不知道怎么实现。
请教proc expand 的方法怎么实现,另外如果有更好的方法,请不吝赐教!
l******n
发帖数: 11737
36
来自主题: _Playstation3版 - UNCHARTED 3 – Join the Fortune Hunters’ Club
http://blog.us.playstation.com/2011/10/18/uncharted-3-join-the-
hunters-club/
UNCHARTED 3 – Join the Fortune Hunters’ Club
Are you a Fortune Hunter who is dying to get your hands on UNCHARTED 3:
Drake’s Deception in just two short weeks? Can’t wait to find out what
Naughty Dog has in store for you after you and Nathan Drake “UNCOVER THE
TRUTH” on November 1st? Will you be scouring the PlayStation Blog in
hopes
of finding out when the next DLC release for Uncharted 3 will be? Do you
want to get y... 阅读全帖
F**********e
发帖数: 2135
37
http://online.wsj.com/article/SB121127520932506675.html?mod=WSJBlog
http://blogs.wsj.com/environmentalcapital/2008/05/20/red-carpet-us-wants-china-to-join-energy-club/?mod=WSJBlog
China Is Asked to Join Energy Group
IEA Invitation Is Bid
By U.S. to Include
Developing Nations
By SHAI OSTER
May 20, 2008 1:47 p.m.
BEIJING -- The U.S. has asked that China join the International Energy
Agency, which was set up after the oil shocks of the 1970s to help developed
countries manage emergency oil supplies
m******8
发帖数: 2153
38
http://www.pinknews.co.uk/2012/08/14/thousands-join-campaign-to
A campaign has begun on Change.org to urge California’s Golden Empire
Council to reinstate 22-year-old Eagle Scout Tim Griffin and to reject the
Boy Scouts of America’s policy barring LGBT scouts and leaders.
More than 60,000 people have joined the campaign so far. Mr Griffin, who was
the longest-serving employee at Camp Winton, says that he was fired from
the scout camp because of his sexuality.
The campaign was begun by Alex Hayes... 阅读全帖
d*2
发帖数: 2053
39
【 以下文字转载自 Military 讨论区 】
发信人: db2 (postgres), 信区: Military
标 题: Uber, SpaceX/Tesla, and PepsiCo execs join Trump business council
发信站: BBS 未名空间站 (Wed Dec 14 09:54:24 2016, 美东)
http://finance.yahoo.com/news/uber-spacex-tesla-pepsico-execs-join-trump-business-132941109--business.html
WASHINGTON (Reuters) - Elon Musk, the chairman and chief executive of SpaceX
and Tesla as well as Uber Technologies CEO and co-founder Travis Kalanick
and PepsiCo Chairman and CEO Indra Nooyi have joined U.S. Preside... 阅读全帖
N*******m
发帖数: 517
40
union操作不会增加column的数目,
join的话,结果会包含两个table的所有column?

outer join
l******s
发帖数: 1276
41
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: db2 (postgres), 信区: SanFrancisco
标 题: Fox Joins NBC, ABC, and CBS in Google TV Denial (ZZ)
发信站: BBS 未名空间站 (Thu Nov 11 11:30:32 2010, 美东)
http://www.dailytech.com/Fox+Joins+NBC+ABC+and+CBS+in+Google+TV+Denial/article20131.htm
Jason Mick (Blog) - November 11, 2010 8:44 AM
TV giants are apparently content to turn away business, fearful of lower ad
revenue
The big four of the broadcast television world -- ABC, NBC, CBS, and Fox --
have now united in their oppositio... 阅读全帖
U*******g
发帖数: 261
42
夫妻各自在一州有收入,一个是R一个NR
联邦税 file jointly,那么各自的州税可以joinly吗?
如果joinly报A州的税,需要填写spouse在B州的收入吗?
如果不join,很多州要求filing status和联邦税一致,非常麻烦啊
g******g
发帖数: 35
43
请提供你的联系方式: name and e-mail address
A HIGH-PERFORMANCE SCHEDULER FOR JOIN
QUERIES EXECUTION OVER GRID-AWARE
ARCHITECTURES
Abstract
A Grid is a collection of computing resources that share and perform tasks.
Performance optimization can be achieved by
exploiting the Grid power utilities; i.e. multi-processing, multi-
programming, abstract task execution. This paper explores
the management of distributed relational databases over Grid infrastructures
for the execution of J − join queries. Our... 阅读全帖
c****8
发帖数: 84
44
看了一些关于申请跟随绿卡, follow to join I824表格的帖子, 恳请各位朋友有类
似经验的能够分享:
我2012.10. 2结婚, 2013.2.14 I485批准拿到绿卡(也就是说是在批准前结婚的),
现在想帮配偶搬移民,请问I824有没有时间的限制,因为已经拿到绿卡快2年了, 现在
才申请follow to join .
另外就是递交I824时除了824 申请表, 搜集了一下帖子的总结, 说还需要提供以下材
料:
1. 结婚证
2. 绿卡影本
3. 配偶出生证
4. I485 approval notice
5. 移民申请副件
请问以上第5项, 移民申请副件是指什么?另外请问好心人, 有没有人知道到底申请
i824 follow to join需要提交哪些支持文件? 我实在找不到相关的答案, 先谢谢大
家了。
m******e
发帖数: 88
45
【 以下文字转载自 EB23 讨论区 】
发信人: madgrape (愤怒的葡萄), 信区: EB23
标 题: 请问配偶follow to join 一定在主申请人485pending期间么?
发信站: BBS 未名空间站 (Thu Dec 17 11:35:06 2015, 美东)
请问配偶follow to join 一定在主申请人485pending期间么?
如果老婆j1在美国 waiver很磨蹭 或者没办下来
等waiver下来的时候 老公绿卡已经批了
那样的话
还能通过follow to join么
pd不是问题

发帖数: 1
46
来自主题: Immigration版 - Follow-to-join 領事館面試
Hi
想請問各位前輩 小弟我今年一月結婚 然後四月的時候在美國境內轉換身分(Adjust of
status)拿到綠卡 由於我是透過EB2(employment-based)拿到身分 我便以FOLLOW-TO-
JOIN的方式幫我老婆申請移民 I-864在六月的時候已經核准了 資料也已經交給NVC 正
在等領事館的面試
我想請問:
1. 有沒有人有EB2/3 FOLLOW-TO-JOIN的面試經驗 可以分享?
2. NVC會提供領事館什麼資料? 是我最早EMPLOYMENT BASED的PETITION 還是I-864?
FOLLOW-TO-JOIN面試主要問題 是集中在我的工作? 還是集中在我和我老婆的婚姻是真
的還是假的?
謝謝!
T*****n
发帖数: 897
47
【 以下文字转载自 Visa 讨论区 】
发信人: Tonyvan (Tony), 信区: Visa
标 题: Follow to join pending期间,申请探亲或旅游签证会不会批准? (转载)
发信站: BBS 未名空间站 (Sun Jan 7 15:41:40 2018, 美东)
发信人: Tonyvan (Tony), 信区: I485
标 题: Follow to join pending期间,申请探亲或旅游签证会不会批准?
发信站: BBS 未名空间站 (Sun Jan 7 15:26:31 2018, 美东)
大家好!我已经为妻子申请了I-824 (Follow to join).十一月份递上去了,估计今年
上半年就会在广州大使馆面试获得绿卡。春节马上要到了,想请妻子过来两周,不知道
申请探亲或旅游签证会不会批准?谢谢。
o******d
发帖数: 743
48
【 以下文字转载自 Immigration 讨论区 】
发信人: ordworld (ordinary world), 信区: Immigration
标 题: follow to join 的配偶必须是在国外吗?
发信站: BBS 未名空间站 (Thu Apr 24 05:04:37 2014, 美东)
要想让配偶follow to join,主申请人申请绿卡时配偶必须在国外吗?我在某网站上看
到以下这点,不太明白:
Spouses and the children of the applicants must have been living abroad when
the applicants entered the United States with their green cards or adjusted
their status to permanent residence from within the country.
另外, follow to join 可以自己弄DIY 吗?如果是,好弄吗?还是得让律师弄?
谢谢。
v***a
发帖数: 23651
49
做了一些research发现
很多人说EB类配偶合法在美国境内的情况下
follow to join实际上是适用485表格的
b. My spouse or parent applied for adjustment of status or was granted
lawful permanent residence in an immigrant visa category that allows
derivative status for spouses and children.
条款
那么这里的"follow to join"是不是只是借用了一个term,而不是移民局定义的需要交
824表格的follow to join呢?
具体操作是不是和我们普通交485 package一样的而不需要交824表格?

发帖数: 1
50
来自主题: EB23版 - Follow-to-join 領事館面試
Hi
想請問各位前輩 小弟我今年一月結婚 然後四月的時候在美國境內轉換身分(Adjust of
status)拿到綠卡 由於我是透過EB2(employment-based)拿到身分 我便以FOLLOW-TO-
JOIN的方式幫我老婆申請移民 I-864在六月的時候已經核准了 資料也已經交給NVC 正
在等領事館的面試
我想請問:
1. 有沒有人有EB2/3 FOLLOW-TO-JOIN的面試經驗 可以分享?
2. NVC會提供領事館什麼資料? 是我最早EMPLOYMENT BASED的PETITION 還是I-864?
FOLLOW-TO-JOIN面試主要問題 是集中在我的工作? 還是集中在我和我老婆的婚姻是真
的還是假的?
謝謝!
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)