摘要:
基本定义: left join (左连接):返回包括左表中的所有记录和右表中连接字段相等的记录。 right join (右连接):返回包括右表中的所有记录和左表中连接字段相等的记录。 inner join (等值连接或者叫内连接):只返回两个表中连接字段相等的行。 full join (全外连接) 阅读全文
摘要:
选择 import java.util.Scanner; //选择 public class SelectionAndLoop { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); S 阅读全文