Alter table "Table_Name"
Add 'New_Column_Name' 'Datatype';
alter table product
Add quantity bigint;
Monday, June 24, 2019
Drop column In sql
Alter table 'Table_name' drop column 'Column_Name'
alter table product drop column [Date];
alter table product drop column [Date];
Saturday, June 22, 2019
Subscribe to:
Comments (Atom)
-
Alter table "Table_Name" Add 'New_Column_Name' 'Datatype'; alter table product Add quantity bigint;
-
<?php if (isset($_POST['Add'])){ $a = $_POST['num1']; $b = $_POST['num2']; $c = $a + $b ...
-
Ans: The .Net Framework is an infrastructure that enables building, deploying and running different types of applications and services using...