@@ -566,7 +566,8 @@ Your schema name will be automatically added to the provided table name::
566
566
Job '1539932326689O' created to upload table 'table_test_from_url'.
567
567
568
568
Now, you can query your table as follows (a full qualified table name must be provided,
569
- i.e.: *user_<your_login_name>.<table_name> *)::
569
+ i.e.: *user_<your_login_name>.<table_name> *. Note that if the <table_name> contains capital letters, it must be
570
+ surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>" *)::
570
571
571
572
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_url'
572
573
>>> query = 'select * from ' + full_qualified_table_name
@@ -593,7 +594,8 @@ Your schema name will be automatically added to the provided table name.
593
594
Uploaded table ' table_test_from_file' .
594
595
595
596
Now, you can query your table as follows (a full qualified table name must be provided,
596
- i.e.: *user_<your_login_name>.<table_name> *)::
597
+ i.e.: *user_<your_login_name>.<table_name> *. Note that if the <table_name> contains capital letters, it must be
598
+ surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>" *)::
597
599
598
600
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_file'
599
601
>>> query = 'select * from ' + full_qualified_table_name
@@ -620,7 +622,8 @@ Your schema name will be automatically added to the provided table name.
620
622
621
623
622
624
Now, you can query your table as follows (a full qualified table name must be provided,
623
- i.e.: *user_<your_login_name>.<table_name> *)::
625
+ i.e.: *user_<your_login_name>.<table_name> *. Note that if the <table_name> contains capital letters, it must be
626
+ surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>" *)::
624
627
625
628
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_astropy'
626
629
>>> query = 'select * from ' + full_qualified_table_name
@@ -643,7 +646,8 @@ table named: user_<your_login_name>.'t'<job_id>::
643
646
Created table 't1539932994481O' from job: '1539932994481O'.
644
647
645
648
Now, you can query your table as follows (a full qualified table name must be provided,
646
- i.e.: *user_<your_login_name>.t<job_id> *)::
649
+ i.e.: *user_<your_login_name>."t<job_id>" *. Note that the previous table name must be
650
+ surrounded by quotation marks since it contains capital letters.)::
647
651
648
652
>>> full_qualified_table_name = 'user_<your_login_name>."t1710251325268O"'
649
653
>>> query = 'select * from ' + full_qualified_table_name
0 commit comments