Changes between Initial Version and Version 1 of Ticket #36492, comment 1


Ignore:
Timestamp:
Jul 5, 2025, 7:33:55 PM (2 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36492, comment 1

    initial v1  
    22
    33{{{#!sql
    4 sqlite> CREATE TABLE foo (a int, b int);
     4sqlite> CREATE TABLE foo (a bool, b bool);
    55sqlite> CREATE INDEX some_idx ON foo (a, b);
    66sqlite> EXPLAIN SELECT * FROM foo WHERE NOT a AND NOT b;
Back to Top