Guest User

Untitled

a guest
Jan 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. sql = "insert into tablex where values 101123";
  2. sql = "insert into tablex where values 10100";
  3. sql = "insert into tablex where values 101125";
  4.  
  5. insert into yourtable (col1)
  6. select yourColumn
  7. from yourtable
  8. where yourColumn >= 101
  9.  
  10. insert into yourtable (col1)
  11. select yourColumn
  12. from yourtable
  13. where yourColumn LIKE '101%'
Add Comment
Please, Sign In to add comment