Sunday, 2 March 2014

Create a table and insert a column of anothe table with related data in new table.

CREATE TABLE mystudent
  AS (SELECT name FROM student);

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(...