From c01b20246edfadde125f15b2e82b53adb1c2f523 Mon Sep 17 00:00:00 2001 From: vboxuser Date: Mon, 4 Sep 2023 00:48:26 +0200 Subject: [PATCH] expanded pandas.DataFrame.to_sql docstring --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index b9407ebe6624a..d4cb04d7b6ead 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -2847,7 +2847,7 @@ def to_sql( index : bool, default True Write DataFrame index as a column. Uses `index_label` as the column - name in the table. + name in the table. Creates a table index for this column. index_label : str or sequence, default None Column label for index column(s). If None is given (default) and `index` is True, then the index names are used.