Drop Table Column In MySQL

Drop Table Column In MySQL

Here we show how  you can drop a column from table in MySQL. Sometime, we not need a particular column of table. So, we delete this column from the table. Syntax:   ALTER TABLE table_name DROP COLUMN column_name; First we create a sample table with data. CREATE TABLE `employees` ( `employee_id` int(11) NOT NULL, `employee_name` varchar(100) …

Drop Table Column In MySQL Read More »

Add two textbox values and display the sum in a third textbox in Javascript

Add two textbox values and display the sum in a third textbox in Javascript

Add two textbox values and display the addition of values in a third textbox needed to use onfocusout Event,  it executed if the user leaves an input field then call the addition function. The function will add values and display the result in third textbox. Below a sample code inflay.com | Add two textbox values and …

Add two textbox values and display the sum in a third textbox in Javascript Read More »