Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Tips and Tutorials
DB::update set value from another column?
zzal
January 2015
Hi there!
Can't find in the docs how can I produce this kind if query with
DB::update()
:
UPDATE table SET col2 = col1;
I was looking for some
DB::raw()
in the docs but didn't find any (Maybe I hung too long with another framework…
;)
.
Or if I get the DB connection, can I do something like this?
$connection = Database_Connection::instance();
$connection->exec('
UPDATE table SET col2 = col1;
');
Thanks!
zzal
January 2015
Got it!
$connection = \Database_PDO_Connection::instance();
$connection->query(\DB::UPDATE, 'UPDATE table SET col2 = col1;', false);
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
zzal
January 2015