Node is saved as draft in My Content >> Draft
-
Copy and create temp table from main table
In SQL we have situations, where we want to manipulate our data based on conditions .
For doing that one approach we need is to store that data into temp table then manipulate it.
For doing this we copy the entire structure of the main table into temp table
Ex:
SELECT * INTO temptale from assignment
If you want selected records say you want only those details which have ID greater than 4
Ex:
SELECT * INTO temptale from assignment where stid>4
0 Comment(s)