Insert ... Select...
am 06.04.2006 23:36:09 von lifesciencemediaI am new to mysql and would appreciate someone helping me out with this
converting this statement from postgresql to mysql.
INSERT INTO ossurjoinquestions SELECT *, RANDOM() as random_sort,
trunc(1144355460, 0) as instanceid FROM ossurcommonquestions WHERE tid =
'3';
So far I have
INSERT INTO ossurjoinquestions( tid, question, ans1, ans2, ans3, ans4, ans5,
corans, image_path, random_sort, instanceid )
SELECT tid, question, ans1, ans2, ans3, ans4, ans5, corans, image_path
FROM ossurcommonquestions
WHERE tid = '3'
What I am not sure how to do is add RAND() as random_sort or trunc($var,0)
as instanceid.
Thank you for any help.