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
SELECT abs(orders.o_orderkey) FROM (SELECTorders.o_orderkeyFROM (SELECTtpch_tiny.orders.o_orderkey AS o_orderkey FROMtpch_tiny.orders) AS orders) AS orders
Error message
Unrecognized name: tpch_tiny at [1:75]
It can't execute on BigQuery because the tpch_tiny.orders.o_orderkey should be orders.o_orderkey. Can not be with schema.
SELECT ABS(orders.o_orderkey) FROM (SELECTorders.o_orderkeyFROM (SELECTorders.o_orderkeyAS o_orderkey FROMtpch_tiny.orders) AS orders) AS orders;
The text was updated successfully, but these errors were encountered:
Description
The statement
Be transformed to
Error message
It can't execute on
BigQuery
because thetpch_tiny.orders.o_orderkey
should beorders.o_orderkey
. Can not be with schema.The text was updated successfully, but these errors were encountered: