Rodi
02/11/2025, 6:22 PMCeligo AI
02/11/2025, 6:22 PMAI generated answer (using internal Slack threads):Based on the conversations, you can use the
TO_DATE
function in your SuiteQL query to compare the datetime column with a specific datetime value. Here is an example of how you can do it:
sql
SELECT *
FROM your_table
WHERE your_datetime_column = TO_DATE('2022-05-11 18:08:09', 'YYYY-MM-DD hh24:mi:ss')
In this query, replace your_table
with the name of your table and your_datetime_column
with the name of your datetime column. The TO_DATE
function is used to convert the string '2022-05-11 180809' to a datetime value in the format 'YYYY-MM-DD hh24miss', which can then be compared with the datetime column in your table.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
02/11/2025, 6:22 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.793709517
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.786673725
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.783163071
Celigo AI
02/11/2025, 6:23 PMRodi
02/11/2025, 6:23 PM