You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simply returns an instance of [`MySQLTable`](#MySQLTable)
283
+
for querying the table with the given `name`.
284
+
285
+
286
+
| Param | Type | Description |
287
+
|:--- |:--- |:--- |
288
+
| name | <code>string</code> | The name of the table. |
289
+
290
+
**Returns**: <code>[MySQLTable](#MySQLTable)</code> - A `MySQLTable` instance.
291
+
275
292
---
276
293
277
294
<aname="PoolPlus+defineTable"></a>
@@ -286,7 +303,7 @@ Defines a table to be created or updated in the database.
286
303
| schema | <code>Object</code> | An object that defines the table's schema. See the [Defining Table Schemas](#defining-table-schemas) section. |
287
304
|[migrationStrategy]| <code>string</code> | One of `safe`, `alter`, or `drop`. This will override the `migrationStrategy` value from the [`config`](#module_mysql-plus..createPool) (but is still subject to the same restrictions in production environments). |
288
305
289
-
**Returns**: <code>[MySQLTable](#MySQLTable)</code> - A `MySQLTable` instance that lets you perform operations on the table.
306
+
**Returns**: <code>[MySQLTable](#MySQLTable)</code> - A `MySQLTable` instance that lets you perform queries on the table.
0 commit comments