ClickHouse/dbms/tests/queries/0_stateless/00702_where_with_quailified_names.sql
2018-08-30 15:01:34 +03:00

8 lines
280 B
SQL

USE test;
DROP TABLE IF EXISTS where_qualified;
CREATE TABLE where_qualified(a UInt32, b UInt8) ENGINE = Memory;
INSERT INTO where_qualified VALUES(1, 1);
INSERT INTO where_qualified VALUES(2, 0);
SELECT a from where_qualified WHERE where_qualified.b;
DROP TABLE where_qualified;