how can we replace the particular column value of a resulted
set of executed query? I mean write down a sql query to
chane the particular column's value of a resulted set of
executed query
Answer Posted / mglbayar
UPDATE (SELECT t1.col1 c1, t2.col1 c2
FROM table1 t1, table2 t2
WHERE t1.pk = t2.fk AND more_condition)
SET c1 = c2;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is $$ in sql?
What is the size of partition table?
What view means?
How to call a javascript function from pl sql?
What is sql comments?
How to run sql statements with oracle sql developer?
What is schema in sql?
what is 'mysqlshow'? : Sql dba
What is a sql profiler?
How do I count rows in sql?
Which column of the user triggers data dictionary view displays the database event that will fire the trigger?
What is trigger explain with example?
Why do we use partitions in sql?
What is the usage of nvl function?
Name three sql operations that perform a sort.