Guest User

Untitled

a guest
Jun 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. | column | pk | type |
  2. +------------+-----+--------------+
  3. | id | yes | int |
  4. | type | yes | enum |
  5. | c_date | | date |
  6. | qty | | int |
  7. | combine_id | | varchar(255) |
  8.  
  9. | id | type | date | qty | combined_id |
  10. +-----+------+------------+------+---------------------+
  11. | 001 | CB04 | 2015-01-01 | 700 | 001_CB04_2015-01-01 |
  12. | 155 | AB01 | 2015-01-01 | 500 | 155_AB01_2015-01-01 |
  13. | 300 | AB01 | 2015-01-01 | 1500 | |
  14.  
  15. select id
  16. , type
  17. , date
  18. , qty
  19. , id::text || '_' || type::text || '_' || date::text as combined_id
  20. from your_table
Add Comment
Please, Sign In to add comment