B bigfeng Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-30 #1 有一张三列多行的表格,怎样才能使三列中的每一列各使用一个SQL语句?每一条SQL语句所 调出的数据记录多少不一!
Z zxb200 Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-30 #7 用臨時表,先把要查詢的數據放在臨時表中, 最后讀臨時表不就得了。
L liuxudong Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-30 #8 可以在内存中动态建表,有一个自作的函数,挺好的,我一直用它。
C charles_chang Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-30 #9 liuxudong, 你好,你那个内存中动态建表的函数,能提供给我吗,我的e-mail是:gung_@163.com
T TingTao Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-30 #10 有多种解决方法: 你可以用StringGrid也可以用ClientDataset控件。 在这里还有一个问题要主意。在写数据时的方法。因为三个SQL语句求的的结果 是不一样的。
天 天真 Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-01 #13 select a.id ,isunll(b.xx,0),isnull(c.xx,0) from a ,(select id, xx from a where ....) b ,(select id,xx from a where ....) c ~~~~~~~~~~~~~这是对应数值型 的如果字符型的话isnull(b.xx,'0') where a.id*=b.id and a.id*=c.id
select a.id ,isunll(b.xx,0),isnull(c.xx,0) from a ,(select id, xx from a where ....) b ,(select id,xx from a where ....) c ~~~~~~~~~~~~~这是对应数值型 的如果字符型的话isnull(b.xx,'0') where a.id*=b.id and a.id*=c.id
A asky Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-04 #15 先建立住查询, 然后多个子查询语句,就可以实现。 关于每一条SQL语句所 调出的数据记录多少不一,这个问题。 我想你可以预先空出最大的行数。