Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 SQLite 数据库中创建了两个表,并希望将它们连接到一个新表中,因此我可以使用它来显示信息。到目前为止,我所拥有的是:
string cmd = string.Format( "select * from {0} join {1}", table1, table2 ); _sqlCommand.CommandText = cmd; _sqlCommand.ExecuteNonQuery( );
但这不会创建一个新表吗?我现在如何访问已加入的信息?