how can I create a new table selecting specific rows of the old table ?
The selected 3 rows have field1 = 243, 245 and 248 respectively.
Also I need to select the rows with field1 > 0 from table3.
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
CREATE TABLE...AS SELECT...to make a table defined by the columns and data types of a query result set:I can’t tell what you mean about
field1>0. I’ll leave that to you.