我想知道,是否有可能使sql查询具有与'select products where barcode in table1 = barcode in table2
' 相同的功能
.我在python程序中编写此函数.调用该函数后,表是永久连接还是仅在该函数运行时连接?谢谢.
SELECT t1.products FROM [Table1] t1 INNER JOIN [Table2] t2 ON t2.barcode = t1.barcode
我想你想加入两个表:
http://www.w3schools.com/Sql/sql_join.asp