Iam trying to insert a record and i want to check that it is not already present in the table.
I try
INSERT INTO emp (empno, name)
VALUES(2, 'ram')
WHERE empno NOT IN (select empno from emp);
but it shows error 'incorrect syntax near where'
|
Iam trying to insert a record and i want to check that it is not already present in the table. I try
but it shows error '
| |||||
feedback
|
|
You can use following query to insert records into emp If you are inserting one record at a time then following query will work as best as it can ...
If you are willing to insert multiple records then just find below query
| ||||
|
feedback
|
|
You can't have If you work with MySQL, you could do something like:
And if you have a | |||
|
feedback
|
|
You can use
You might also want to take a look at | |||
|
feedback
|
|
you'd probably be looking for something like
??? | |||
|
feedback
|