Select C_ID,C_Last,C_First,C_City,C_State,C_phone,C_email
Insert into consultant
values
106,Abdelrazek,Maged,Lexington,KY,4079520220,Prof.mAbdelrazek@yahoo.com
You have provided nothing more than a query. You need to provide some detail and what your actual question is.
The answer is yes.
This is likely to work but we still need more information from you
Insert into consultant
(C_ID,
C_Last,
C_First,
C_City,
C_State,
C_phone,
C_email)
values
(106,
'Abdelrazek',
'Maged',
'Lexington',
'KY',
4079520220,
'Prof.mAbdelrazek@yahoo.com')
No one has followed this question yet.