Skip to content

Commit 75fda9c

Browse files
committed
Update integrating-with-databend-cloud-using-databend-driver.md
1 parent 8634c1f commit 75fda9c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

docs/en/tutorials/programming/python/integrating-with-databend-cloud-using-databend-driver.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ cursor = client.cursor()
3131
cursor.execute('DROP TABLE IF EXISTS data')
3232

3333
# Create the table if it doesn't exist
34-
cursor.execute('CREATE TABLE IF NOT EXISTS data (x Int32, y String)')
35-
36-
# Describe the table
37-
cursor.execute('DESC data')
34+
cursor.execute('CREATE TABLE IF NOT EXISTS data (x Int32, y String)')
3835

3936
# Insert data into the table
4037
cursor.execute("INSERT INTO data (x, y) VALUES (1, 'yy'), (2, 'xx')")

0 commit comments

Comments
 (0)