w3resource

Python: Alter a given SQLite table


12. Alter SQLite Table

Write a Python program to alter a given SQLite table.

Sample Solution:

Python Code :

import sqlite3
from sqlite3 import Error
def sql_connection():
   try:
     conn = sqlite3.connect('mydatabase.db')
     return conn
   except Error:
     print(Error)
def sql_table(conn):
   cursorObj = conn.cursor()
   cursorObj.execute("CREATE TABLE agent_master(agent_code char(6),agent_name char(40),working_area char(35),commission decimal(10,2),phone_no char(15) NULL);")
   print("\nagent_master file has created.")
   print("\nTable structure of agent_master:")
   a= conn.execute("PRAGMA table_info('agent_master')")
   for i in a:
     print(i)
   # adding a new column in the agent_master table
   cursorObj.execute("""
   ALTER TABLE agent_master
   ADD COLUMN FLAG BOOLEAN;
   """)
   print("\nagent_master file altered.")
   a= conn.execute("PRAGMA table_info('agent_master')")
   print("\nTable structure of agent_master:")
   for i in a:
     print(i)
   conn.commit()
sqllite_conn = sql_connection()
sql_table(sqllite_conn)
if (sqllite_conn):
 sqllite_conn.close()
 print("\nThe SQLite connection is closed.")

Sample Output:

agent_master file has created.

Table structure of agent_master:
(0, 'agent_code', 'char(6)', 0, None, 0)
(1, 'agent_name', 'char(40)', 0, None, 0)
(2, 'working_area', 'char(35)', 0, None, 0)
(3, 'commission', 'decimal(10,2)', 0, None, 0)
(4, 'phone_no', 'char(15)', 0, None, 0)

agent_master file altered.

Table structure of agent_master:
(0, 'agent_code', 'char(6)', 0, None, 0)
(1, 'agent_name', 'char(40)', 0, None, 0)
(2, 'working_area', 'char(35)', 0, None, 0)
(3, 'commission', 'decimal(10,2)', 0, None, 0)
(4, 'phone_no', 'char(15)', 0, None, 0)
(5, 'FLAG', 'BOOLEAN', 0, None, 0)

The SQLite connection is closed.

For more Practice: Solve these Related Problems:

  • Write a Python program to alter a SQLite table by adding a new column, and then update that column with default values.
  • Write a Python function that accepts a table name and a column definition, alters the table to add the column, and prints the new schema.
  • Write a Python script to modify a SQLite table by renaming an existing column and then display the updated table schema.
  • Write a Python program to alter a table by changing a column's data type and then verify the alteration by querying sqlite_master.

Go to:


Previous: Write a Python program to delete a specific row from a given SQLite table.
Next: Write a Python program to create a backup of a SQLite database.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.