ac senthilkumar's blog
________________________________________________________________________________________
Tuesday, December 15, 2009
Selective insert from existing table
To insert entire fields,
INSERT
INTO
emp_new
SELECT
*
FROM
emp_old
To insert selective fields,
INSERT
INTO
emp_new (eno, age)
SELECT
eno,
age
FROM
emp_old
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
PDOException: Invalid text representation
Selective cell protection in Spreadsheet
Err: Call to a member function get_cellmap() on a non-object by sfDomPDFPlugin in Symfony
Err: Control reached end of function without RETURN in PL/PGSQL
Err: There is no unique constraint matching given keys for referenced table
Sorting of Alphanumeric Column
Wordpress to Blogger migration too easy..
Edit pages at run time for edit or spell check without any tool
Add day, month and year with date field
List file names with modified time stamp customized
No comments:
Post a Comment