数据库有哪些 mysql数据库中的using是什么?

mysql数据库中的using是什么?在连接操作中使用等同于打开。例如,a和B根据ID字段相关联。下面两个例子是等价的:select a.name,b.age from test as ajoin t

mysql数据库中的using是什么?

在连接操作中使用等同于打开。例如,a和B根据ID字段相关联。下面两个例子是等价的:select a.name,b.age from test as a

join test2 as b

on a.id=b.id

select a.name,b.age from test as a

join test2 as b

use(id)