sql >> データベース >  >> RDS >> Sqlserver

テーブルのスキーマを取得する

    このコードはあなたが望むことをします(明らかにテーブル名、サーバー名などを変更します):

    using System;
    using System.Collections.Generic;
    using System.Text;
    
    using System.Data;
    using System.Data.SqlClient;
    using System.Data.SqlTypes;
    
    namespace ConsoleApp
    {
        class Program
        {
            static void Main(string[] args)
            {
                string query = "SELECT * FROM t where 1=0";
                string connectionString = "initial catalog=test;data source=localhost;Trusted_Connection=Yes";
    
                DataTable tblSchema;
    
                using (SqlConnection cnn = new SqlConnection(connectionString))
                {
                    using (SqlCommand cmd = cnn.CreateCommand())
                    {
                        cmd.CommandText = query;
                        cmd.CommandType = CommandType.Text;
                        cnn.Open();
                        using (SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.KeyInfo))
                        {
                            tblSchema = rdr.GetSchemaTable();
                        }
                        cnn.Close();
                    }
                }
                int numColumns = tblSchema.Columns.Count;
                foreach (DataRow dr in tblSchema.Rows)
                {
                    Console.WriteLine("{0}: {1}", dr["ColumnName"], dr["DataType"]);
                }
    
                Console.ReadLine();
            }
        }
    }
    


    1. PostgreSQLのサブクエリから(複数の行と列)を更新または挿入します

    2. 読み取りコミットスナップショットアイソレーションでのデータ変更

    3. SQLデータベースが破損しているかどうかを確認する方法–MDFファイルを修復するソリューション

    4. 常にゼロの結果を返すSQLクエリはありますか?