0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Access/SQL SELECT結果でINSERTする

Posted at

Access/SQL SELECT結果でINSERTする

qiita.rb
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb

Dim strSQL As String
    
strSQL = "INSERT INTO テーブル1  (カラム1, カラム2, カラム3) "
strSQL = strSQL & "SELECT カラムA,カラムB,カラムC "
strSQL = strSQL & "FROM テーブル2 WHERE Not カラムA Is Null"

Debug.Print strSQL
db.Execute strSQL

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?