CREATE SEQUENCE IF NOT EXISTS seq_cizu;
CREATE TABLE IF NOT EXISTS cizu (
id INTEGER NOT NULL DEFAULT (NEXT VALUE FOR seq_cizu),
ci TEXT NOT NULL,
explanation TEXT NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX IF NOT EXISTS IDX_CI ON cizu(ci);
The following SQL was executed
SELECT * from cizu where ci ='飞云';
What did you expect to see?
Expect to return an empty result set because there are no eligible records.
What did you see instead?
The = conditional expression execution returns the result of the LIKE expression
What version of Genji are you using?
What did you do?
The following
TABLE
is created.The following SQL was executed
What did you expect to see?
Expect to return an empty result set because there are no eligible records.
What did you see instead?
The
=
conditional expression execution returns the result of theLIKE
expression