JDBC小常识
1 JDBC连接数据库6步
Load the JDBC Driver
Establish the Database Connection
Create a Statement Object
Execute a Query
Process the Results
Close the Connection
2 事务的4大特性
答:原子性A,一致性C,隔离性I,永久性D
3 select count(*) from student 和select count(id) from student 之间的区别。
答:
select count(*) 统计所有学生的记录个数,包括空记录。
Select count(Id) 统计所有学生的记录个数,不包括null记录。