|
各位高手:
本人程序里有这么一句代码:
asql = "select b.股票名称,交易信息表.时间,交易信息表.开盘,交易信息表.最高,交易信息表.最低,交易信息表.收盘 from 交易信息表,(select 基本信息表.股票代码,基本信息表.股票名称 from 基本信息表 where Replace( 基本信息表.股票名称, ' ', '') in (" & lstr & ")) b" &
" where b.股票代码 = 交易信息表.股票代码 and 交易信息表.时间 >= #" & DLast("时间", "交易信息表", "时间 < #" & Me.Text0 & "# and 股票代码 = '" & [b.股票代码] & "'") & "# and 交易信息表.时间 <= #" & Me.Text2 & "#"
'" and 交易信息表.时间 >= #" & DLast("时间", "交易信息表", "时间 < #" & Me.Text0 & "#") & "#"
Set qdf = CurrentDb.CreateQueryDef("查询", asql)
运行后,说明找不到b.股票代码,即上面红色字体的内容,请问各位如何修改? 非常感谢了,在线等结果!!! |
|