一个宏将SQL查询转换为字符串连接,反之亦然?

时间:2011-09-07 07:44:55

标签: sql vba textmate text-manipulation

我正在使用Access,我在代码中有很多查询,例如

"SELECT something, something " _
& "FROM the_table " _
& "WHERE something Is Null "

"SELECT " & _
  "Min(something), " & _
  "Max(something2) " & _
"FROM (the_table " & _
      "INNER JOIN another_table ON sm1 = sm2) " & _
"WHERE sm3 is not null " & _
      "AND sm4 = " & Me.plan

我想做一个将这些字符串转换为可执行查询的宏(删除初始引号和最终引号,&符号和非错误),反之亦然,将查询转换为字符串连接。

示例输出将是:

SELECT
  Min(something),
  Max(something2)
FROM (the_table
      INNER JOIN another_table ON sm1 = sm2)
WHERE sm3 is not null
      AND sm4 = Me.plan

我不知道如何谷歌这个:因为我问。

我知道如何在TextMate或类似文件上录制宏,但我不熟悉它,我需要一些帮助。

任何提示?谢谢: - )

1 个答案:

答案 0 :(得分:0)

您可以使用DoCmd.RunSQL myString命令。

有关更多有价值的信息,请参阅herethere

顺便说一句,这是您可以完成的Google搜索:http://tinyurl.com/3apsala