I have a C # project with a Sql server database.
In this database, I have a table named "Process" and columns named "process_name", "full_name" and "version" (all of type: nvarchar (50)).
I want to write a query that will add a new process only if it does not already exist in the table.
How can i do this?
Many thanks,
source share