1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Create Table ztoto (siren Varchar2(10));
Table created
Insert Into ztoto Values ('123456');
1 row inserted
Select * From ztoto Where siren = '123456';
SIREN
----------
123456
Select * From ztoto Where siren = 123456;
SIREN
----------
123456
Insert Into ztoto Values ('Boum');
1 row inserted
Select * From ztoto Where siren = '123456';
SIREN
----------
123456
Select * From ztoto Where siren = 123456;
Select * From ztoto Where siren = 123456
ORA-01722: Nombre non valide |