With As Clause Not recognized MySQL

I am trying to use a with as clause in a query. WITH NAME AS ( SELECT col1, col2 FROM TABLE1 ) SELECT col2, col3 FROM TABLE2 WHERE col2 in (NAME.col1) The query placed in the with as clause works on it’s own but I get this error: Unknown column NAME.’col1′ in ‘where clause’ I… Read More With As Clause Not recognized MySQL

Is there any way to ignore these SQL warnings on DataGrip?

I use DataGrip as an IDE for Google BigQuery. DataGrip has a warning pane that warns about items that are frivolous. An example below, "Unable to resolve column ‘DAYS_DIFF_CURRENT_ETA’, this is occurring because I capitalized the word when I was selecting it. The query runs fine, however I would prefer to only see warnings where… Read More Is there any way to ignore these SQL warnings on DataGrip?