Sunday, 2 March 2014

Copy one column value in another column.

Table Name: list
number | test
123456 | 123456
123486 | 123486
232344 | 23234
UPDATE `list` SET test=number;

No comments:

How calulation total value for HTML input text?

<script> $j(document).ready(function(){ $j(":text").keyup(function(){ if (isNaN($j(this).val())) { alert(...