Insert into mysql from another table with a where clause.?
-
I am working on a mysql database. I have two tables, one is the Booking table and the other is user table. Users fill in a form under a session and their username(uname) is saved onto the Booking table in the database. This table has another column by the name of ref, that provides user ref. I want to get that value from my user table by comparing the username as equal to the one recorded in the Booking table. Hope this makes sense :) Here is the command I'm trying to use: INSERT INTO Booking (`ref`) SELECT FROM user ('ref') WHERE (SELECT FROM Booking (‘uname’))= (SELECT FROM user (‘uname’))
-
Answer:
Hmm, it should be something like that, TBH I think it's not what you wanted, but the way you explained it didn't really help. INSERT INTO `Booking` (`ref`) VALUES (SELECT `id` FROM `users` WHERE `uname`='user name');
nada at Yahoo! Answers Visit the source
Related Q & A:
- Mysql: What to do if a disc full happens on master OR slave and there is no space left to binary logs?Best solution by Server Fault
- How to add primary key from multiple table as a foreign key in a table in sql server 2008?Best solution by stackoverflow.com
- How to add a new table to a data source?Best solution by technet.microsoft.com
- How to store table with a large number of fields?Best solution by Stack Overflow
- How to write SQL statement with dynamic where clause?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.