Hello ALL,
a table tb_A is created as
Code:
create table tb_A (Word varchar(20) binary NOT NULL);
or created as
Code:
create table tb_A (Word varchar(20) NOT NULL);
There is another table tb_B. It is created as
Code:
create table tb_B (Word varchar(20) binary NOT NULL);
or as
Code:
create table tb_B (Word varchar(20) NOT NULL);
do the following query over tb_A and tb_B
Code:
SELECT
Word
FROM
tb_A, tb_B
WHERE
tb_A.Word = tb_B.Word;
I wonder if the
binary modifier would cause longer execution time?
Thanks