Need help on SOQL to query all related child case records
I can query the child cases for current case by something like below,
I can query the child cases for current case by something like below,
I want to create a case which has an attachment, Billing Account, and topics. Given below is the code from my Test Class:
I’ve marked multiple Case Status picklist values as “Closed”, and now I want to access only those picklist values which are marked as Closed in Apex class. I tried looking for this in documentation but could not find any thing.
I’ve been trying to get a MySQL query that uses a left join combined with a group_concat to get the Amazon S3 paths of all of the profile photos for a given user. What I want is for the photo_keys aggregate column that’s the result of the group_concat() function to become an empty string instead of null when the user has no profile pics.
I have a table with an existing user_agent
column that I want to make a new column based on if user agent contains the substrings 'windows'
or 'os x'
in MySQL and I can’t figure out what is wrong or find examples of case statements with LIKE
for strings on this site. My version of MySQL
is 8.0.26
.
I have an events executed table wherein I want to separate columns based on the dates
I have the following table in MySQL (Version – 5.7.18-log).
I have such select:
I have a stored procedure I’m trying to create in MySQL that takes 5 parameters and returns the result of a query. I’m using CASE/WHEN to differentiate between each query, however, when I run the Stored Procedure: nothing returns.
I have a select statement but want to evaluate one column, if it contains value of 584. I am trying to create a new calculation column called total by multiplying 3 other columns, if not 584 then calculate based on different columns select CASE `d2c_3_csg_batch_in`.`transactioncode` AS `transactioncode`, `d2c_3_csg_batch_in`.`site` AS `site`, `d2c_3_csg_employees`.`lastname` AS `lastname`, `d2c_3_csg_employees`.`firstname` AS … Read more