File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
docs/source/user-guide/sql Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ DESCRIBE users;
343
343
344
344
Output:
345
345
346
- ```
346
+ ``` sql
347
347
+ -- ------------+-----------+-------------+
348
348
| column_name | data_type | is_nullable |
349
349
+ -- ------------+-----------+-------------+
@@ -374,7 +374,7 @@ DESCRIBE taxi;
374
374
375
375
Output might show:
376
376
377
- ```
377
+ ``` sql
378
378
+ -- ------------------+-----------------------------+-------------+
379
379
| column_name | data_type | is_nullable |
380
380
+ -- ------------------+-----------------------------+-------------+
@@ -385,11 +385,9 @@ Output might show:
385
385
+ -- ------------------+-----------------------------+-------------+
386
386
```
387
387
388
- :::{note}
389
388
The ` DESCRIBE ` command works with all table types in DataFusion, including:
390
389
391
390
- Regular tables created with ` CREATE TABLE `
392
391
- External tables created with ` CREATE EXTERNAL TABLE `
393
392
- Views created with ` CREATE VIEW `
394
393
- Tables in different schemas using qualified names (e.g., ` DESCRIBE schema_name.table_name ` )
395
- :::
You can’t perform that action at this time.
0 commit comments