CREATE TABLE student(
xuehao CHAR(7) PRIMARY KEY,
name CHAR(8) NOT NULL,
sex CHAR(2),
age SMALLINT,
jiguan CHAR(20),
dept CHAR(10) DEFAULT '计算机');
数据表的创建修改和删除
ALTER TABLE student ADD address CHAR(30);添加address列
DROP TABLE student CASCADE|RESTRICT 索引的创建和删除
CREATE INDEX xuehao_index ON student(xuehao)
DROP INDEX xuehao_index 数据修改UPDATE student SET age=age+1 WHERE xuehao='2004007' 数据删除DELETE FROM student; JDBC编程
jdbc:subprotocal:data source identifier
jdbc:odbc:university 以jdbc odbc桥的方式连接university数据库
jdbc:odbc:university?user=username&password=password 带有参数的连接 连接网络数据库的格式
jdbc:subprotocal://[hostname][:port][dbname][?parameter1=value1][¶meter2=value2]......
jdbc:microsoft:sqlserver://localhost:1433;dataBase=university?user=username&password=password 使用JDBC驱动来连接sqlserver数据库:
String sql="delete from student where xuehao="+"'0741210'";
int i=statement.executeUpdate(sql);//返回值是受影响的行数
System.out.println(i);
public boolean execute()throws Exception