This is my first time using an ORACLE SQL. I came across with a query like this :
SELECT *
FROM TABLE_A
WHERE COLUMN_A = 1.
AND COLUMN_B <> 0.
Can anyone explain me what does a dot (.) after those integers means? Will it make any difference if I don't put a dot (.)?
Thanks in advance :)
The following recommendations will help you in your SQL tuning process.
You'll find 3 sections below:
CREATE INDEX table_a_idx_column_a_column_b ON TABLE_A (COLUMN_A,COLUMN_B);
SELECT
*
FROM
TABLE_A
WHERE
TABLE_A.COLUMN_A = 1.
AND TABLE_A.COLUMN_B <> 0.