向新表粘贴xxx行数据吗
是否删除已经存在的数据表***?
如何才能不出这些提示,达到不用人干预,自动处理的要求??
11 个解决方案
#1
你是不是先删除前面已经产生的文件,在作生成表查询啊》
#2
能否自动删除,不出提示?
或者有个地方可以进行设置?
或者有个地方可以进行设置?
#3
不行的吧,
我觉得那提示不错呀,虽然烦了点,他是怕我们贴错了呀,呵,
我觉得那提示不错呀,虽然烦了点,他是怕我们贴错了呀,呵,
#4
这个问题很简单:
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
#5
另外:
To子辰:那个提示对于数据库设计时有帮助,可是到执行的时候就不应该再出现了。
To子辰:那个提示对于数据库设计时有帮助,可是到执行的时候就不应该再出现了。
#6
to yiqun_zhao :
高手啊,顺便把我的这个问题也给解决了吧: http://community.csdn.net/Expert/TopicView1.asp?id=3506724
高手啊,顺便把我的这个问题也给解决了吧: http://community.csdn.net/Expert/TopicView1.asp?id=3506724
#7
我看看吧.
#8
你那个查询语法来说是没有问题的。
#9
你那个Not In的查询实际上是存在问题的。[In的那个查询是没有问题的]
你对比一下我下面给出的查询就知道了。
[你原表t1中的记录数量为1605,In中的数量为222,Not In中的数量为1383]
下面的这个表示In,下面的两种写法是等效的:
select t1.f2 from t1 where t1.f2 in (select t2.f from t2)
select distinct f2 from t1,t2 where t1.f2=t2.f
下面的是Not In的语句:
select t1.f2 from t1
where f2 not in (select distinct f2 from t1,t2 where t1.f2=t2.f)
或者
select t1.f2 from t1
where f2 not in (select t1.f2 from t1 where t1.f2 in (select t2.f from t2))
[注意:采用In会增大资源开销,所以尽量不要在嵌套的子查询中的子查询中用In]
你对比一下我下面给出的查询就知道了。
[你原表t1中的记录数量为1605,In中的数量为222,Not In中的数量为1383]
下面的这个表示In,下面的两种写法是等效的:
select t1.f2 from t1 where t1.f2 in (select t2.f from t2)
select distinct f2 from t1,t2 where t1.f2=t2.f
下面的是Not In的语句:
select t1.f2 from t1
where f2 not in (select distinct f2 from t1,t2 where t1.f2=t2.f)
或者
select t1.f2 from t1
where f2 not in (select t1.f2 from t1 where t1.f2 in (select t2.f from t2))
[注意:采用In会增大资源开销,所以尽量不要在嵌套的子查询中的子查询中用In]
#10
这个问题很简单:
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
我照此做了,可是还是有提示,怎么回事
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
我照此做了,可是还是有提示,怎么回事
#11
你mail过来,我帮你看看。
#1
你是不是先删除前面已经产生的文件,在作生成表查询啊》
#2
能否自动删除,不出提示?
或者有个地方可以进行设置?
或者有个地方可以进行设置?
#3
不行的吧,
我觉得那提示不错呀,虽然烦了点,他是怕我们贴错了呀,呵,
我觉得那提示不错呀,虽然烦了点,他是怕我们贴错了呀,呵,
#4
这个问题很简单:
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
#5
另外:
To子辰:那个提示对于数据库设计时有帮助,可是到执行的时候就不应该再出现了。
To子辰:那个提示对于数据库设计时有帮助,可是到执行的时候就不应该再出现了。
#6
to yiqun_zhao :
高手啊,顺便把我的这个问题也给解决了吧: http://community.csdn.net/Expert/TopicView1.asp?id=3506724
高手啊,顺便把我的这个问题也给解决了吧: http://community.csdn.net/Expert/TopicView1.asp?id=3506724
#7
我看看吧.
#8
你那个查询语法来说是没有问题的。
#9
你那个Not In的查询实际上是存在问题的。[In的那个查询是没有问题的]
你对比一下我下面给出的查询就知道了。
[你原表t1中的记录数量为1605,In中的数量为222,Not In中的数量为1383]
下面的这个表示In,下面的两种写法是等效的:
select t1.f2 from t1 where t1.f2 in (select t2.f from t2)
select distinct f2 from t1,t2 where t1.f2=t2.f
下面的是Not In的语句:
select t1.f2 from t1
where f2 not in (select distinct f2 from t1,t2 where t1.f2=t2.f)
或者
select t1.f2 from t1
where f2 not in (select t1.f2 from t1 where t1.f2 in (select t2.f from t2))
[注意:采用In会增大资源开销,所以尽量不要在嵌套的子查询中的子查询中用In]
你对比一下我下面给出的查询就知道了。
[你原表t1中的记录数量为1605,In中的数量为222,Not In中的数量为1383]
下面的这个表示In,下面的两种写法是等效的:
select t1.f2 from t1 where t1.f2 in (select t2.f from t2)
select distinct f2 from t1,t2 where t1.f2=t2.f
下面的是Not In的语句:
select t1.f2 from t1
where f2 not in (select distinct f2 from t1,t2 where t1.f2=t2.f)
或者
select t1.f2 from t1
where f2 not in (select t1.f2 from t1 where t1.f2 in (select t2.f from t2))
[注意:采用In会增大资源开销,所以尽量不要在嵌套的子查询中的子查询中用In]
#10
这个问题很简单:
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
我照此做了,可是还是有提示,怎么回事
步骤如下:
工具-->选项-->编辑/查找-->确认[把"记录更改"、"删除文档"、"操作查询"这三个复选框前面的√去掉]-->应用-->确定
我照此做了,可是还是有提示,怎么回事
#11
你mail过来,我帮你看看。