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
It is not possible to represent the exclusion of unknown columns in dialects that do not support something like EXCLUDE, but it does not seem to be an error.
PRQL input
from tracks
select !{milliseconds,bytes}
SQL output
SELECT
*
FROM
tracks
-- Generated by PRQL compiler version:0.9.5 (https://prql-lang.org)