I installed Oracle 10g in my virtual XP and created a table using
create table reg1 ( fname varchar2(30), lname varchar2(30), addr varchar2(30), mail varchar2(30), occu varchar2(30), uname varchar2(30), passwd varchar2(30) );
and the table is created successfully. But when I try to get the values ββwith a simple query like
select fname, lname from reg1 where uname="bbb";
I get an error like
ORA-00904: "bbb": invalid identifier
I canβt understand what I did wrong here.
source share