Learning SQL

Hello!

I'm new to this forum as my position changed within the last year from Box Office Manager to a more IT related field of Tessitura Database Manager.  I've been learning a great deal through Tessitura training courses offered and the assistance of Tessitura support, however I hit a road block when it comes to anything requiring SQL knowledge which pops up very frequently.  Since I didn't come from an IT background, I'm lost when it comes to this and it gets tough when I keep having to go to Consulting and present a charge to Administration to get a task completed.  Do any of you have advice on how to gain basic SQL knowledge to do tasks in Tessitura.  And if there are any of you who were in this same position, how did you go about learning and moving forward?

Thank you so much,

Melanie

Parents Reply
  • All, here's a CTE for the joins to get back to the olde time-y T_PMAP - in case anyone wants/needs. 

    --pmap= 
    WITH pmap(pmap_no, price_category)
    AS
    (
    SELECT a.id, c.price_category_id
    FROM [dbo].T_PERF_PRICE_TYPE a
    JOIN [dbo].T_PERF_PRICE_LAYER b ON a.perf_price_layer = b.id
    JOIN [dbo].TR_PRICE_LAYER_TYPE c ON b.price_layer_type = c.id
    )

Children
No Data