You need to sign in to do that
Don't have an account?
vanessa veron
Case sensitive SELECT
Hello!
I want to compare if a variable has the same name as one of the values of my custom object.
I would like to delete the same values...
I could add as nameJob__c: JOB, job, Job (three different things).
Is to do a select informing CASE SENSITIVE??
Thank you
I want to compare if a variable has the same name as one of the values of my custom object.
I would like to delete the same values...
I could add as nameJob__c: JOB, job, Job (three different things).
Is to do a select informing CASE SENSITIVE??
List<obj__c> existing = [SELECT Id From obj__c where nameJob__c =:NameJobSchedulable]; delete existing;NameJobSchedulable = variable String
Thank you
the above query delete the Contact with name as google.
thanks,
Ramesh
All Answers
the above query delete the Contact with name as google.
thanks,
Ramesh