由买买提看人间百态

topics

全部话题 - 话题: field2
1 (共1页)
s**********r
发帖数: 286
1
来自主题: BuildingWeb版 - javascript auto complete issue
新手上路, 不好意思, 问个很初级的问题. Javascript和html在下面. 目的是要用
fielda决定fieldb的自动填项.
如果我在fielda选"Yes", fieldb会自动填入"T1". 但是, 如果我选"No", fieldb也会
自动填入"T1", 而不是期待的"T2". 错误处在哪呢? 多谢指教!
function testauto() {
var field1 = document.getElementById('fielda');
var field2 = document.getElementById('fieldb');
if (field1.value = "Yes") {
field2.value = "T1";
} else if (field1.value = "No") {
field2.value = "T2";
} else {
field2.value = "T3";
}
}
HTML:
x*****p
发帖数: 1707
2
Java is definitely pass by reference. However, String is immutable, that is
why you can not change its value by reference. If you want to output "
Goodbye", you can use reflection. The code is below.
private void mutate(Object str) {
try {
Field field = String.class.getDeclaredField("value");
field.setAccessible(true);
char[] newValue = "Goodbye".toCharArray();
field.set(str, newValue);
Field field2 = String.class.getDeclaredField("count");
field2.setAccessible(tr... 阅读全帖
l*******y
发帖数: 11
3
我的数据情况如下:
每个ID有多组重复测量的值,但是有的没有测量值
ID field1 field2 filed3
1
1 z
1 x y Null
2 a
2 Null b c
.
.
.
n
n e f
n d Null Null
想通过query得到每个field最后一个非空的数值,即:
ID field1 field2 filed3
1 x y z
2 a b c
...
n d e f
用total,last 得出的只能得到最后一组值:
ID field1 field2 filed3
1 x y Null
2 Null b c
n d Null Null
谢谢大家啦!
B*****g
发帖数: 34098
4
select t1.id, t1.f1,t2.f2,t3.f3
from (select id, last(field1) as f1
from table1
where field1 is not null
group by id) t1,
(select id, last(field2) as f2
from table1
where field2 is not null
group by id) t2,
(select id, last(field3) as f3
from table1
where field3 is not null
group by id) t3
where t1.id = t2.id
and t1.id= t3.id
or
select t0.id,
(select last(t1.field1) from table1 t1 where t1.id = t0.id and t1.fie
ld1 is not null) AS field1,
(select last(t2.field2) from table1 t2 wher
h***r
发帖数: 184
5
来自主题: Database版 - 新手请教:为什么这个Query不work
一个select query,criteria是field1等于1,field2是group by field3里最大的。
我写了下面的query,可是总告诉我最多只能return一个record,而在我的data set里
符合标准的应该有几百个才对。我用Access2007。请高人指点。
SELECT Table.*
FROM Table
WHERE Field1 = 1
AND Table.Field2 = (SELECT max(Field2) FROM Table GROUP BY Field3)
a****u
发帖数: 3
6
来自主题: 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
出了问题,希望指教,谢谢!
fu
发帖数: 6
7
来自主题: Database版 - 一个SQL问题
今天interview被问倒一个SQL问题,GROUP BY 以后随机在每个GROUP选一行:
field1 field2 field3
A1 B1 C1
A1 B1 C2
A1 B2 C3
A1 B2 C4
A2 B3 C5
A2 B3 C6
A2 B4 C7
A2 B5 C8
要求GROUP field1 and field2, 每一个GROUP里随机的选一个C*, example
A1 B1 C1
A1 B2 C4
A2 B3 C5
A2 B4 C8
有谁知道怎么写SQL啊, 先谢了!
c**t
发帖数: 2744
8
来自主题: Database版 - Deadlock on merge (oracle)
no delete. Here is the pseduo scripts:
package ETL
function load_feed1
return LOAD.IMPORT('A')
end;
function load_feed2
return LOAD.IMPORT('B')
end
end ETL
package LOAD
function IMPORT(externalTable as varchar2) return number
MERGE INTO targetTable x using externalTable y
on x.key = y.key
WHEN MATCHED THEN UPDATE
set field = y.field
WHEN NOT MATCHED THEN INSERT
(field1, field2) values (y.field1, y.field2);
B*********L
发帖数: 700
9
来自主题: Database版 - 新手请教:为什么这个Query不work

try this:
SELECT Table.*
FROM Table
WHERE Field1 = 1
AND Table.Field2 = (SELECT max(Field2) FROM Table)
B*****g
发帖数: 34098
10
来自主题: Database版 - 新手请教:为什么这个Query不work
SELECT t1.*
FROM Table t1
WHERE t1.Field1 = 1
AND t1.Field2 = (SELECT max(t2.Field2) FROM Table t2 where t2.Field3 =t1.
Field3 )
GROUP BY t1.Field3
g***l
发帖数: 18555
11
来自主题: Database版 - 新手请教:为什么这个Query不work
保险起见Access里写两个QUERY吧
QUERY1: SELECT FIELD3, MAX(FIELD2) AS MAXFIELD2 FROM TABLE GROUP BY FIELD3
QUERY2: T.* FROM QUERY1 Q1, TABLE T WHERE FIELD1=1
AND Q1.MAXFIELD2=T1.FIELD2 AND Q1.FIELD3=T.FIELD3
p*********d
发帖数: 136
12
来自主题: Database版 - 新手请教:为什么这个Query不work
BlueTigerBL 建议的
SELECT Table.*
FROM Table
WHERE Field1 = 1
AND Table.Field2 = (SELECT max(Field2) FROM Table)
应该 work 吧
g***l
发帖数: 18555
13
来自主题: Database版 - 新手请教:为什么这个Query不work
这个返回的是最大FIELD2的一组值,LZ要的是GROUP BY FIELD3,每一个FIELD3里面最大
FIELD2的记录
G***G
发帖数: 16778
14
来自主题: Database版 - statistics testing in oracle
one table as
field1 field2 field3 filed4
1 3 4 5
2 3 2 1
for each row, the formua is
field1!+field2!+field3+field!
N! means N*(N-1)*....*2*1
how to find the formuala for N! in oracle?
M**********n
发帖数: 4964
15
来自主题: Database版 - Sharepoint list怎么做sumif?
View #1:
Field1 Field2 Field3
ABC 1 0
ABC 1 1
ABC 0 0
DEF 1 1
View #2:
Field1 Field2 Field3
ABC 2 1
DEF 1 1
从view#1怎么到view#2?excel就很简单了,可没发现sharepoint view里面怎么直
接写sumif的?
谢谢。
w*s
发帖数: 7227
16
right now my query in c# looks like this,
Table1Entry bMfi = MyDB.Table1.Single(x => x.Name == "abc");
Table1 is like this {Name, field1, field2}.
now i break Table1 into 2 tables,
Table0 has {id, Name};
Table1 has {id, field1, field2}.
What's the easiest way to do a query based on Name now ?
d*******1
发帖数: 854
17
index(field2, field2)

regular
l******o
发帖数: 279
18
来自主题: Immigration版 - 分享我的 Index of Exhibits
实在是很穷,140过了也没多少包子可发,就干脆不发了(Sorry!),分享一下我的
Exhibits Index 和 Outline of Contributions 作为对本版众多热心ID的回报吧。如
果能顺便挣些包子,485过了定当散尽家财,希望到时粮仓充实了点 :-)
我的case他引一项很弱,所以我Exhibit Index中有意突出了一些闪光点,在文章(18
-65)、引用(69-79,141-145)和审稿(80-87)方面和网上看到的模板以及律师
提供的都有所不同,有意突出了自己认为比较强的方面:由于是跨学科,杂志分布比较
广,SJR 排名里找到了最适合自己的用上了。希望对和我情况类似的有所帮助。
Exhibits Index是我自己准备的,分享应该没问题。PL、RL 有很多律师的努力在里面
,就不共享了。下一片介绍 Outline of Contributions,是在律师给基础上大幅修改
了的,只列出 Outline。
INDEX OF EXHIBITS
Letters of Recommendation
Exhibit 1: Expert Testimony ... 阅读全帖
l******o
发帖数: 279
19
来自主题: Immigration版 - My Outline of Contributions
我的 Outline of Contributions 就是这一项里小标题,是我自己加在律师写的PL里的
,再充实了一些内容。我觉得这样突出了重点,一目了然。可能跟其他PL里的模板区别
不大。不过如果能真正做到条理清楚、内容简洁、重点突出,基本上就没问题了。
I. Brief summary of credentials (one page)
A. Dr. XXX has contributed original scientific contributions of major
significance in the field (six and a half pages)
A.1 Dr. XXX is the first scientist to DO SOMETHING in FIELD1 with
programmable TECHNIQUE (Based on first-authored paper #1)
A.2 Dr. XXX independently developed the technology to fabricate SOMETHINGs
in FIELD2... 阅读全帖
y***l
发帖数: 1095
20
正打算写contribution这部分,看到模板有不同的写法,想问一下关于几个要点怎么分
配的问题。
我同事的1A RFE刚过不久,所以我本来是想按他RFE contribution部分来写的:
1. My original scientific research work has been published in top
scientific journals and conferences with very high impacts.
2. My original scientific research work has been selected to present orally
in the largest international conference in my field.
3. My original scientific research work has been widely cited in
publications on top scientific journals by experts in my field from leading
re... 阅读全帖
X***y
发帖数: 3947
21
我的xbox360闲置。要的话pm开个价吧
送一堆FPS游戏包括battle field2,COD3 and 4,ghost recon 1/2, HAWX
两个无限手柄,三个电池,一个quick charge kit
http://www.google.com/products/catalog?q=xbox+360+charger&oe=ut
g***j
发帖数: 40861
22
来自主题: Xibei版 - 请教老乡 perl (转载)
【 以下文字转载自 Military 讨论区 】
发信人: gshjj (各输己键), 信区: Military
标 题: perl 请教 (转载)
发信站: BBS 未名空间站 (Tue Feb 2 15:33:24 2010, 美东)
发信人: gshjj (各输己键), 信区: CS
标 题: perl 请教
发信站: BBS 未名空间站 (Tue Feb 2 15:32:23 2010, 美东)
是一个作业题
说一个CSV有四列,要求用perl 输出第一列和第四列。第四列或者是一个单词,或者是
两个单词。如果是两个单词,要求输出的时候这两个单词用双引号引起来。
下面是我写的perl
open(in_file," while ($line=)
{
($field1,$field2,$field3,$field4)=split',',$line;
if ($field4=~ /.\s./) {print "$field1, x\n";}
else {print "$
g***j
发帖数: 40861
23
来自主题: Xibei版 - 请教老乡 perl (转载)
要速度,谢谢啊。
不过还是有点问题啊。
这是我的程序
open(in_file," while ($line=)
{($field1,$field2,$field3,$field4)=split',',$line;
if ($field4=~ /.\s./) {print "$field1,"$field4"";}
else {print "$field1,$field4";}
}
close (in_file);
这是我的结果
TTT,Phenylalanine
TTC,Phenylalanine
TTA,Leucine
TTG,Leucine
TCT,Serine
TCC,Serine
TCA,Serine
TCG,Serine
TAT,Tyrosine
TAC,Tyrosine
TAA,Stop
TAG,Stop
TGT,Cysteine
TGC,Cysteine
TGA,Stop
TGG,Tryptophan
CTT,Leucine
CTC,Leucine
CTA,Le
g***j
发帖数: 40861
24
来自主题: Xibei版 - 请教老乡 perl (转载)
谢谢啊,做出来了
我对编程一点不知道
这只是生物信息学的一道作业
现在我的程序是:
open(in_file," while ($line=)
{($field1,$field2,$field3,$field4)=split',',$line;
if ($field4=~ /.\s./) { chomp($field4); {print "$field1,"$field4"\n";}}
else {print "$field1,$field4";}
}
close (in_file);
谢谢!
g***j
发帖数: 40861
25
来自主题: CS版 - perl 请教
是一个作业题
说一个CSV有四列,要求用perl 输出第一列和第四列。第四列或者是一个单词,或者是
两个单词。如果是两个单词,要求输出的时候这两个单词用双引号引起来。
下面是我写的perl
open(in_file," while ($line=)
{
($field1,$field2,$field3,$field4)=split',',$line;
if ($field4=~ /.\s./) {print "$field1, x\n";}
else {print "$field1,$field4";}
}
close (in_file);
我不知道怎么完成“如果是两个单词,要求输出的时候这两个单词用双引号引起来。
”这个任务,所以这里暂时用“x"代替了。
各位大侠,应该用什么代替“x"才能达到要求呢?
谢谢啊!
i****a
发帖数: 36252
26
select id, max(field1) as f1, max(field2) as f2
from table
group by id
a9
发帖数: 21638
27
来自主题: Database版 - 新手请教:为什么这个Query不work
field2 in?
g***l
发帖数: 18555
28
来自主题: Database版 - 新手请教:为什么这个Query不work
SELECT max(Field2) FROM Table GROUP BY Field3 出来时一个SET的VALUES,你是没
显示FIELDS3, 不是一个确定的数值,所以不行,因为没有FIED3显示,你的INNER QUERY
出来没有意义,这个GROUP BY肯定是要放在外面的,BEIJING好像是对的。但每个FIELD3只能有一个RECORD,还不是你想要的
g***l
发帖数: 18555
29
来自主题: Database版 - 新手请教:为什么这个Query不work
不能用,INNER QUERY出来的是个集合,每个FIELD3---MAX FIELD2,OUTER QUERY没法
直接QUERY这个集合,只能是JOIN起来
w*m
发帖数: 1806
30
来自主题: Database版 - sqlloader
LOAD DATA
INFILE 'input_File.csv’
INTO TABLE tableName
FIELDS TERMINATED BY ","
(field1,
field2,
field3,
field4)
....
question: 可不可以在字段后面加上一个"select id from..."来自动赋值给某一字段?
b******t
发帖数: 10
31
来自主题: Database版 - how to remove fulltext index?
table里有
fulltext(field1,field2);
如何把这个index去掉啊?
试了 ALTER TABLE table DROP INDEX/FULLTEXT fields ... 啥的,都不行
p*a
发帖数: 592
32
from t0 in Table0
join t1 in Table1
on t0.id == t1.id
where
t0.Name == "abc"
select
new {t0.id, t1.field1, t1.field2};
r******n
发帖数: 4522
33
来自主题: Hardware版 - 家里烂电脑太多了,卖也卖不掉
我家里。
台式机:
Athlon 3200+跟3700+ 废在地下室,是当初(2005?)为了打Battle Field2买的,
3700+ 还跑了一段BF2 server给文学城上的人用,当初两块6800显卡就烧掉我300块啊。
X2 240当初配HTPC现在还HDMI在电视上, 那个带遥控的HTPC机箱烧掉100多,现在用得
很少因为有PBO Box.
X2 250用来淘汰3200+,现在LD在用,还算利用率高。
Q6600俺第一台Quad, 当初也是寄予厚望,P180的机箱是真不错,以后啥都可以扔,机
箱得留着。现在7x24跑Freeswitch+skype当Voip server,因为噪音小,散热也最好。
Q9300, Gateway品牌机, 贪便宜手贱买的,refurbished 300多,带的东西真多,TV
card, Modem什么都被我拆了,遥控器也从来不用。前一段craiglist上开价250想卖掉
,有人还到230,最后居然反悔只出200,俺一气之下不卖了,换了个CPU风扇现在安静
多了主要当下载机,偶尔客串下Trading,还能跑4个thread
i7960跟10... 阅读全帖
p**********r
发帖数: 1693
34
来自主题: Hardware版 - 家里烂电脑太多了,卖也卖不掉
Orz

我家里。台式机:Athlon 3200 跟3700 废在地下室,是当初(2005?)为了打Battle
Field2买的,3700 还跑了一段BF2 server给文学城上........
★ Sent from iPhone App: iReader Mitbbs 6.88 - iPhone Lite




while the controllers (action class) define where you can the backendData,
for example, SController.execute() would call SBusDelegate.getData()...
what UI framework u use?
b******y
发帖数: 1684
35
来自主题: Java版 - Question about Model 2
not sure what u r talking about.....
but let me try to answer...
basically for the data part, the jsp page would have things like

backendData.field1
backendData.field2
backendData.field3
c****1
发帖数: 302
36
不用什么dreamweaver的coldfusion。
首先搞清楚apache的数据结构
一般安装在xxx.../htdocs (如 /usr/local/apache/htdocs )
其实用Javascript, Java or Jsp都好,用php会更方便。
用php编写一个小文件如group_upload.php,它的内容是简单的form.
field1 :选择原文件在哪里
field2 :目标文件要放到哪里
group member premisson:Yes, or No
upload button(按这个就上传):这是关键,写一个function内部拷贝/上传文件
...
把group_upload.php放到/htdocs下或子目录/htdocs/yoursubfolder就行了
最好和mysql一起用,这样可方便排序和检索

member
cd
发帖数: 32
37
一个文件有多行, 每一行都是|隔开的多个field, 比如:
field1|field2|field3|field4|field5
对任何两行,如果前两field值一样,则认为是重复行。
请问如何重新输出一个文件,去掉这些重复行。
首先采纳的意见给包子 :-)
谢谢
cd
发帖数: 32
38
每行的field数一样,但是有些field可能是空 比如
field1|field2|field3||field5
w*s
发帖数: 7227
39
来自主题: Programming版 - Python: how to do nested struct ?
say in c i have this
struct MyStruct {
struct MyHeader myHeader;
struct MyPayload myPayload;
};
struct MyHeader{
int id;
char name[MAX];
}
struct MyPayload {
int field1;
short field2;
.... // could be very long
}
what's the best ways in python pls ?
k**n
发帖数: 3989
40
来自主题: Programming版 - 这种需求用MongoDB如何做?
某种保险产品的查询,
用户输入
Field0=[1,2,3,4,5,6,7]
Field1=[10,20,40]
Field2=[2,3]
Field3=[1,2]
Field4 =true,
...
Field10=0,
value={v1=20,v2,v3..}
要求快速返回以上所有组合的结果。
应该如何设计shechma?
正常的json结构是. {_id,f1:10,f2:2,....f10:0,value:{v1,v2,v3}}
我是不是可以就跟做cache的key:value一样。把查询条件做成key?
每列
{_id:productid_f1_f2_f3_...f10,
value:{v1,v2,v3}
}
不清楚对mongo来说有没有必要这样做。
S******y
发帖数: 1123
41
比如:CSV file 有5个fields (field2中含有comma) -
1232, "a fox jumps, over a dog", 452, 20100501, 29
...
c**********5
发帖数: 653
42
来自主题: Statistics版 - 请教Macro(SAS)
Here is my sas code;
%macro va_111(field1,field2,new_var);
Data c;
merge mydata1 (in=a) mydata2;
by id;
if a;
%if &filed1=2 %then &new_var=0;
%else %if &filed2=" " and &filed1 =. %then &new_var=0;
%else &new_var=1;
run;
%mend;
%va_111(usuage,drugname,status);
Sas log:
WARNING: Apparent symbolic reference FILED1 not resolved.
ERROR: A character operand was found in the %EVAL function or %IF condition
where a numeric operand
is required. The condition was: (&filed1)=2
ERROR: The macr
h*e
发帖数: 10233
43
Dataset里有两个field (string),想看看field1是不是在field2中,要用哪个regular
expression function?多谢多谢
z*******n
发帖数: 1034
44
来自主题: MobileDevelopment版 - [iSSSDK][iOS][Network]http/https 通讯-1%
https://user name%:@[email protected]/* *//p ath?query#=中文data&field2=&
value2#fragment
1 (共1页)