sql new column create code example
Example 1: create column sql
ALTER TABLE table_name
ADD column_name datatype;
Example 2: how to make new column in sql
<?php
echo str_replace("john", "jack", "hello i am john");
?>
ALTER TABLE table_name
ADD column_name datatype;
<?php
echo str_replace("john", "jack", "hello i am john");
?>