是的,C# 的 SQLHelper 類可以支持復雜查詢。SQLHelper 是一個用于簡化數據庫操作的類庫,它提供了一系列靜態方法來執行 SQL 語句和參數化查詢。你可以使用 SQLHelper 來執行復雜的 SQL 查詢,包括多表連接、子查詢、聚合函數等。
以下是一個簡單的示例,展示了如何使用 SQLHelper 執行復雜查詢:
using System;
using System.Data;
using System.Data.SqlClient;
using MySql.Data.MySqlClient;
public class SQLHelper
{
private static string connectionString = "your_connection_string";
public static DataTable ExecuteComplexQuery(string query)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand(query, connection))
{
using (SqlDataReader reader = command.ExecuteReader())
{
DataTable result = new DataTable();
result.Load(reader);
return result;
}
}
}
}
}
class Program
{
static void Main(string[] args)
{
string complexQuery = @"
SELECT o.order_id, o.order_date, c.customer_name, od.product_name, od.quantity, od.price
FROM orders o
JOIN customers c ON o.customer_id = c.customer_id
JOIN order_details od ON o.order_id = od.order_id
WHERE o.order_date BETWEEN @startDate AND @endDate
ORDER BY o.order_date DESC";
DataTable result = SQLHelper.ExecuteComplexQuery(complexQuery);
foreach (DataRow row in result.Rows)
{
Console.WriteLine($"Order ID: {row["order_id"]}, Order Date: {row["order_date"]}, Customer Name: {row["customer_name"]}, Product Name: {row["product_name"]}, Quantity: {row["quantity"]}, Price: {row["price"]}");
}
}
}
在這個示例中,我們定義了一個名為 ExecuteComplexQuery
的方法,該方法接受一個 SQL 查詢字符串作為參數,并返回一個包含查詢結果的 DataTable 對象。在 Main
方法中,我們定義了一個復雜的 SQL 查詢,并使用 SQLHelper 類執行該查詢。最后,我們遍歷結果集并輸出相關信息。