Creating a Database Table

This example creates a table called my_table with one column, col_string, which holds strings.
try { Statement stmt = connection.createStatement(); // Create table called my_table String sql = "CREATE TABLE my_table(col_string VARCHAR(254))"; stmt.executeUpdate(sql); } catch (SQLException e) { }

Post a comment

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image. Ignore spaces and be careful about upper and lower case.