Skip to content

Instantly share code, notes, and snippets.

@dinedal
Created June 19, 2013 22:12
Show Gist options
  • Save dinedal/5818598 to your computer and use it in GitHub Desktop.
Save dinedal/5818598 to your computer and use it in GitHub Desktop.
This example inserts some rows into table films from a table tmp_films with the same column layout as films:
```sql
INSERT INTO films SELECT * FROM tmp_films WHERE date_prod < '2004-05-07';
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment