i.*  i是一个表的别名,i.*是这个表的所有列,比如


select i.* from customer i;
相当于
select id,name,password from customer;

相关文章:

  • 2021-05-07
  • 2022-03-08
  • 2022-01-12
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2022-01-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案