Hi Jeremy, I have a Sequel query and in one point I use left outer join like this:
... .left_outer_join(:files, path: Sequel[:folders][:path]) ... Basically, I use "*path*" column from "*folders*" table. But the thing is, I have also a local string variable like this: ... *append_str *= '/another' ... .left_outer_join(:files, path: Sequel[:folders][:path]) ... Now what I want to do is, append this string to "*path*". In lamest way like this: .left_outer_join(:files, path: Sequel[:folders][:path] + *append_str*) But i want to append this string what comes from that join. How can I concat this value on queries? Thanks, Dennis. -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sequel-talk/8f2e53d2-8776-49bc-96ce-be28446cc06fn%40googlegroups.com.
