Chỉnh sửa table trong JDBC trong Java



Miêu tả vấn đề

Cách chỉnh sửa (thêm và cập nhật) các column của một Table và cách xóa một table trong JDBC?

Giải pháp

Ví dụ sau sử dụng các lệnh create, alter và drop để tạo, chỉnh sửa hoặc xóa table trong JDBC.

import java.sql.*;

public class jdbcConn {
   public static void main(String[] args) throws Exception{
      Class.forName("org.apache.derby.jdbc.ClientDriver");
      Connection con = DriverManager.getConnection
      ("jdbc:derby://localhost:1527/testDb","username",
      "password");
      Statement stmt = con.createStatement();
      String query ="CREATE TABLE employees 
      (id INTEGER PRIMARY KEY,
      first_name CHAR(50),last_name CHAR(75))";
      stmt.execute(query);
      System.out.println("Employee table created");
      String query1 = "aLTER TABLE employees ADD 
      address CHAR(100) ";
      String query2 = "ALTER TABLE employees DROP 
      COLUMN last_name";
      stmt.execute(query1);
      stmt.execute(query2);
      System.out.println("Address column added to the table 
      & last_name column removed from the table");
      String query3 = "drop table employees";
      stmt.execute(query3);
      System.out.println("Employees table removed");
   }	
}
Quảng cáo

Kết quả

Code trên sẽ cho kết quả sau. Kết quả có thể rất đa dạng.

Employee table created
Address column added to the table & last_name 
column removed from the table
Employees table removed from the database

Đã có app VietJack trên điện thoại, giải bài tập SGK, SBT Soạn văn, Văn mẫu, Thi online, Bài giảng....miễn phí. Tải ngay ứng dụng trên Android và iOS.

Theo dõi chúng tôi miễn phí trên mạng xã hội facebook và youtube:

Các bạn có thể mua thêm khóa học JAVA CORE ONLINE VÀ ỨNG DỤNG cực hay, giúp các bạn vượt qua các dự án trên trường và đi thực tập Java. Khóa học có giá chỉ 300K, nhằm ưu đãi, tạo điều kiện cho sinh viên cho thể mua khóa học.

Nội dung khóa học gồm 16 chuơng và 100 video cực hay, học trực tiếp tại https://www.udemy.com/tu-tin-di-lam-voi-kien-thuc-ve-java-core-toan-tap/ Bạn nào có nhu cầu mua, inbox trực tiếp a Tuyền, cựu sinh viên Bách Khoa K53, fb: https://www.facebook.com/tuyen.vietjack

Follow facebook cá nhân Nguyễn Thanh Tuyền https://www.facebook.com/tuyen.vietjack để tiếp tục theo dõi các loạt bài mới nhất về Java,C,C++,Javascript,HTML,Python,Database,Mobile.... mới nhất của chúng tôi.


java_jdbc_trong_java.jsp


Tài liệu giáo viên