커스텀 쿼리 실행은 커넥터 태스크에서 작업으로 노출됩니다. 조치는 커넥터 인터페이스를 통해 통합에 제공되는 첫 번째 클래스 함수입니다. 조치를 사용하면 항목을 변경할 수 있습니다. 조치는 커넥터마다 다릅니다. 하지만 커넥터가 조치를 지원하지 않을 수 있으며 이 경우 Actions 목록이 비어 있습니다.
SQL 문에서 물음표(?)를 사용하여 쿼리 매개변수 목록에 지정해야 하는 단일 매개변수를 나타낼 수 있습니다. 예를 들어 다음 SQL 쿼리는 Employees 테이블에서 LastName 열에 지정된 값과 일치하는 모든 행을 선택합니다.
SELECT * FROM Employees where LastName=?
SQL 쿼리에 물음표를 사용한 경우에는 물음표마다 + 매개변수 이름 추가를 클릭하여 매개변수를 추가해야 합니다. 통합을 실행하는 동안 이 매개변수는 SQL 쿼리의 물음표(?)를 순차적으로 대체합니다. 예를 들어 물음표(?) 3개를 추가한 경우 매개변수 3개를 순서대로 추가해야 합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-03(UTC)"],[[["This guide explains how to use the \"Execute custom query\" action within the Connector task, which allows for the execution of custom SQL queries in Application Integration."],["The \"Execute custom query\" action is a feature of several connectors, including BigQuery, Cloud SQL, Couchbase, Elasticsearch, MySQL, Oracle DB, PostgreSQL, Salesforce, SQL Server, Snowflake, Spanner, and Teradata, allowing flexibility for the user."],["To set up a custom query, users must add and configure a connector task, then select \"Execute custom query\" from the available actions."],["Users can define query parameters, set timeouts, limit the number of returned rows, and use the script editor to input and save SQL statements, including DML and DDL."],["SQL queries may contain parameters represented by a question mark (?) that must be specified in the parameters list, following the same sequence as the question marks."]]],[]]