@@ -309,8 +309,8 @@ def read_sql_table(table_name, con, schema=None, index_col=None,
309
309
schema : string, default None
310
310
Name of SQL schema in database to query (if database flavor
311
311
supports this). If None, use default schema (default).
312
- index_col : string, optional, default: None
313
- Column to set as index
312
+ index_col : string or list of strings , optional, default: None
313
+ Column(s) to set as index(MultiIndex)
314
314
coerce_float : boolean, default True
315
315
Attempt to convert values to non-string, non-numeric objects (like
316
316
decimal.Decimal) to floating point. Can result in loss of Precision.
@@ -384,8 +384,8 @@ def read_sql_query(sql, con, index_col=None, coerce_float=True, params=None,
384
384
Using SQLAlchemy makes it possible to use any DB supported by that
385
385
library.
386
386
If a DBAPI2 object, only sqlite3 is supported.
387
- index_col : string, optional, default: None
388
- Column name to use as index for the returned DataFrame object.
387
+ index_col : string or list of strings , optional, default: None
388
+ Column(s) to set as index(MultiIndex)
389
389
coerce_float : boolean, default True
390
390
Attempt to convert values to non-string, non-numeric objects (like
391
391
decimal.Decimal) to floating point, useful for SQL result sets
@@ -443,8 +443,8 @@ def read_sql(sql, con, index_col=None, coerce_float=True, params=None,
443
443
Using SQLAlchemy makes it possible to use any DB supported by that
444
444
library.
445
445
If a DBAPI2 object, only sqlite3 is supported.
446
- index_col : string, optional, default: None
447
- column name to use as index for the returned DataFrame object.
446
+ index_col : string or list of strings , optional, default: None
447
+ Column(s) to set as index(MultiIndex)
448
448
coerce_float : boolean, default True
449
449
Attempt to convert values to non-string, non-numeric objects (like
450
450
decimal.Decimal) to floating point, useful for SQL result sets
0 commit comments