sql create new column in existing table code example
Example 1: Add a new column into table
ALTER TABLE table ADD [COLUMN] column_name;
Example 2: how to make new column in sql
<?php
echo str_replace("john", "jack", "hello i am john");
?>