mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 02:13:44 +03:00
Remove semicolon from code example
This commit is contained in:
parent
f54cf3b87b
commit
616dab7064
|
@ -47,7 +47,7 @@ You may then import the ``psycopg`` package, as usual:
|
|||
cur = conn.cursor()
|
||||
|
||||
# Execute a query
|
||||
cur.execute("SELECT * FROM my_data");
|
||||
cur.execute("SELECT * FROM my_data")
|
||||
|
||||
# Retrieve query results
|
||||
records = cur.fetchall()
|
||||
|
|
Loading…
Reference in New Issue
Block a user