Answers for "add new column in sql table c# script"

SQL
12

script to add new column in table sql

ALTER TABLE table_name
ADD column_name datatype;
Posted by: Guest on March-15-2020
1

add new column in data table c#

> dt.columns.Add("ColumnName", typeof(Give the type you want));
> dt.Rows[give the row no like  or  or any no]["Column name in which you want to add data"] = Value;
Posted by: Guest on June-17-2021

Code answers related to "add new column in sql table c# script"

Code answers related to "SQL"

Browse Popular Code Answers by Language