Solving SQL Query | Rows to Column in SQL

Поділитися
Вставка
  • Опубліковано 29 вер 2024

КОМЕНТАРІ • 192

  • @nataliebear9011
    @nataliebear9011 Рік тому +1

    This is the best crosstab explanation I've seen. Thank you!!!

  • @TheVaibhavdang
    @TheVaibhavdang 2 роки тому +17

    Your content is what I am following from my initial days of learning sql. If possible please make more practise videos on sql with concepts every week/weekend so that our logic buildng can increase week by week. Thanks for the good content.

  • @Tarunkumar-zw6sd
    @Tarunkumar-zw6sd 3 місяці тому

    can you make a video on transactions please. Appreciate your work ,Thank you.

  • @sharukhbilal5710
    @sharukhbilal5710 2 роки тому +4

    Bro kindly make video on regular expressions from scratch till advanced level

    • @techTFQ
      @techTFQ  2 роки тому +3

      Noted bro will consider it

  • @ramakumarguntamadugu1299
    @ramakumarguntamadugu1299 2 роки тому +1

    Great 👍 content as always 👌 thank you

    • @techTFQ
      @techTFQ  2 роки тому

      Glad you liked it buddy

  • @sunnygawande5283
    @sunnygawande5283 2 роки тому +2

    One video on data cleaning in sql

    • @techTFQ
      @techTFQ  2 роки тому +1

      Sure bro will do it

  • @likitha-sneha
    @likitha-sneha Рік тому

    Thanks for the explanation. Ur explanations are crystal clear.
    I subscribed to ur channel..☺️

  • @crazydot81
    @crazydot81 2 роки тому +1

    Awesome explanation! As always. Great thanks!

    • @techTFQ
      @techTFQ  2 роки тому

      Glad you liked it :)

  • @grow_your_faith
    @grow_your_faith Рік тому

    Great work techTFQ

  • @jasonbaker7437
    @jasonbaker7437 23 дні тому

    great content as always, just a heads up blog link is broken.

  • @adzplus1
    @adzplus1 2 роки тому

    Awesome. Great video! Much helpful

  • @kaushikbhide9387
    @kaushikbhide9387 2 роки тому +1

    Thank You 👏👏 great content

    • @techTFQ
      @techTFQ  2 роки тому +1

      Glad you think so!

  • @rajudasari8482
    @rajudasari8482 2 роки тому

    Good Approach, can we have one video on UN Pivot same scenario, and what about if the new month is added it won't be dynamic. Any approach?

  • @cooldwnload
    @cooldwnload Рік тому

    good work 👍

  • @zemichal
    @zemichal Рік тому

    thank you, subbed :)

  • @Iceeboltt
    @Iceeboltt 5 місяців тому

    Sir one important doubt can we work in company and also post tech videos and tutorials as a freelancer will this be considered dual employment/moonlighting?

  • @whoareyou9348
    @whoareyou9348 Рік тому

    Hi tfq can you please upload the video about data validation and performance tuning

  • @kannang7233
    @kannang7233 4 місяці тому

    how to provide dynamic values in pivot funcition IN clause instead of constant values

  • @Gate_Tricks
    @Gate_Tricks 2 роки тому +1

    sir can we visualize the data through sql... like can we make graphs by using sql......

    • @techTFQ
      @techTFQ  2 роки тому +1

      Not really,, we generally use visualization tools like power bi or tableau for such things

  • @n9nitin
    @n9nitin 2 роки тому

    Where can i download the script

  • @GracefulTalesPluto
    @GracefulTalesPluto 2 роки тому +1

    Your discord channel is asking me too many questions about my verification? why? verify If I am human, verified. verify my email- verified, verify if I human again - verified, now give my phone number...?? I mean why?

    • @techTFQ
      @techTFQ  2 роки тому

      Forget my discord channel, no idea why few have issues..
      You can download the scripts from my blog.. link to my blog in video description

  • @IainMace
    @IainMace 2 роки тому +5

    Outstanding. worked perfectly (for MySql). Thanks heaps

    • @techTFQ
      @techTFQ  2 роки тому

      Glad to hear that

  • @ManiKandan-kg5ky
    @ManiKandan-kg5ky 2 роки тому +3

    Hi when will your next batch starts?

    • @techTFQ
      @techTFQ  2 роки тому +2

      Probably in August

  • @pw6048
    @pw6048 2 роки тому +4

    Good video, but for SQL Server i would recommend you look at the GROUPING SETS command.
    With that you can rewrite your query to below :
    When using "set statistics time on;" you can see it beeing a lot faster.
    ;with inner_data as
    (
    select
    customer_id as Customer
    ,format(sales_date, 'MMM-yy') as sales_date
    ,cast(replace(amount, '$', '') as int) as amount
    from sales_data
    )
    select *
    from (
    select
    isnull(Customer, 'Total') as Customer,
    isnull(sales_date, 'Total') as sales_date,
    case when sign(sum(amount)) = -1 then concat('(', ABS(sum(amount)), ')$') else concat(sum(amount), '$') end as amount
    from (
    SELECT a.Customer, b.sales_date, 0 as amount
    from
    inner_data a inner join
    inner_data b
    on a.Customer b.Customer and a.sales_date b.sales_date
    union all
    select
    Customer
    ,sales_date
    ,amount
    from inner_data ) a
    group by GROUPING SETS( (Customer, sales_date), (Customer),(sales_date))
    ) as sales
    pivot
    (
    max(amount)
    for sales_date in ([Jan-21], [Feb-21], [Mar-21], [Apr-21]
    ,[May-21], [Jun-21], [Jul-21], [Aug-21]
    ,[Sep-21], [Oct-21], [Nov-21], [Dec-21],[Total])
    ) as pivot_table

  • @bobhutchins557
    @bobhutchins557 2 роки тому +4

    What an outstanding video! Ver well done! Thank you for putting it together. I have a question, though. I'm primarily a MySQL users but also use SQL Server. How could we set this up to be more dynamic? For example, let's say your column table covered 24 months and had 5 customers. Instead of writing out 24 lines of code each time (1 for each column) and then 24 lines multiple times, is there a way to write much fewer lines using variables, loops and a WITH clause? Thanks again - your videos have taught me so, so much!

  • @Anonymous_it_is
    @Anonymous_it_is 2 роки тому +12

    Everytime you upload a new video, it brings abundance of knowledge in our lives. Thanks for this quality content.
    Maza aa jata hai aapka explanation sunke😁
    Please consider making videos on topics such as Indexing(in depth) and database designing if possible.

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you Rohit..
      Very happy to read your positive feedback ❤️

  • @samadixyachine8422
    @samadixyachine8422 Рік тому +2

    Although i am not an English speaker, that does not prevent me from following you. It is very well explained with well chosen examples.
    I learned a lot thanks to you. Believe me you are the best. I copied the exact same query using crosstab and when i added the second
    argument i got the error : column ("Jan-21") does not exist. I hope you can explain the origin of the problem to me. GREAT THANKS
    (i replaced ("Jan-21") with (' 'Jan-21' ') and it worked)

  • @DHARMYOGCOM
    @DHARMYOGCOM 2 роки тому +2

    this is a great one. thanks. i always wanted to do pivot queries. never really got around to it. now i got to learn it with my current project. very helpful video. thanks

    • @DHARMYOGCOM
      @DHARMYOGCOM 2 роки тому

      thanks again. I just completed my report. Just have few little things to add but this video was very handy.

  • @jesthyrdevera9743
    @jesthyrdevera9743 3 місяці тому

    Hello - For some reasons some of the data extracted using crosstab does not align in the columns they are expected to. For example there are 5 columns and one of the records has values for 1, 3 and 5 but when I used crosstab the values for columns 1,3 and 5 goes to columns 1,2 and 3. What should I do to align those data properly? thank you for those who will respond.

  • @srh1034
    @srh1034 3 місяці тому

    @techtfq: Of all your videos this one is the most confusing and messy! Just jumping from here to there! Wish you could do more organized considering how good you are in explaining complex matters in simple ways!

  • @muneendrareddymettupalli773
    @muneendrareddymettupalli773 5 місяців тому

    Hi bro ,
    how to pass dynamic value in start_date instead of hard-code values.. in Oracle how it work
    Can you explain

  • @amitsrivastava6093
    @amitsrivastava6093 8 місяців тому

    Hi Taufiq, thanks for sharing, all your videos are awesome.
    is there a way to keep month in row wise and custumer name will show region wise in column?
    awaiting your answer..i have sent an email to you on this, could you please respond?

  • @bhavanapatel9368
    @bhavanapatel9368 2 роки тому +1

    Plz can you share database file for practice a question

    • @techTFQ
      @techTFQ  2 роки тому

      already shared. check description

  • @kancharalaparameshwarreddy3837
    @kancharalaparameshwarreddy3837 2 роки тому +2

    Good video sir it is very help full and iam alway thankful to you sir ,sir kindly provide every week one imortant video

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you bro..
      And sure will try doing it bro

  • @sighupcmd
    @sighupcmd Рік тому

    PG: passing sql as string argument is just awful solution, can we do better, and not using extensions? Here's the request for your next video :) Thanks!

  • @solvedit
    @solvedit 9 місяців тому

    What will be the solution where columns varies based on customer names instead of month names as column.
    I want to say that month are fixed to 12 columns but customers are dynamic & any time a new customer can be inserted in our record.
    I need customer names in columns & Month-Year in rows.

  • @sonalivv
    @sonalivv 2 роки тому +4

    This was a great video! I also loved how well you presented it, explaining every little detail. That way it is easy to remember the syntax. Thank you!! This was super helpful. Earlier I used to do sum() or max() to get a pivot output in postgres. crosstab will make my life a lot easier.
    One question - Is there a way we can dynamically populate the values for "as" and "values". For instance, instead of months, I have a list of products (which is dynamically populated) and I want to pivot customer against products. Is this possible in postgres?

    • @techTFQ
      @techTFQ  2 роки тому +2

      Thank you 🙏🏼
      Instead of values you can provide an sql query as the second argument in crosstab..
      But this query should just return 1 column

    • @sonalivv
      @sonalivv 2 роки тому +1

      @@techTFQ Thank you!! I will try this 🙏🏼

  • @Nizam_Ul_Mulk
    @Nizam_Ul_Mulk 6 місяців тому +2

    Bro you are one of the best trainers I could ever come across. To the point and the crystal clear. Thanks one again.

  • @faranbaig6486
    @faranbaig6486 Рік тому +2

    Thanks for the clarity Taufiq! I'm wondering if Crosstab allows date ranges to be selected dynamically. Instead of hard coding the months, is there a way for it to pick up whatever months the data has?

  • @winstonsmith8597
    @winstonsmith8597 Рік тому

    MMM-YY, Great, some developer in the future will now need to Y3K proof the code. :)

  • @Anvesh2013
    @Anvesh2013 Рік тому

    12:00 is there no way to generate those columns with months programatically, (procedurally) instead of hardcoding them

  • @majidrooinparvizi8649
    @majidrooinparvizi8649 Рік тому +1

    Following and enjoying your videos. But in these cases, isn't it just much easier and faster to do these transformations in Excel and import the results into sequel tables for further analysis if needed?

  • @MOTIVAO
    @MOTIVAO Рік тому +2

    Your videos are quite incredible, thank you Thoufiq for your patience and knowledge.

  • @baradhwajgudepu7110
    @baradhwajgudepu7110 Рік тому

    Thank you taufiq, i struck in converting columns to rows can you help in doing that please

  • @anandpaulmangalam2192
    @anandpaulmangalam2192 Рік тому +1

    Tf...awesome and great work. Although I have been writing SQL for several years, i could learn few new tips and tricks from you. I have a suggestion. Can you come up with a video that shows how to calculate cumulative totals and average totals on a rolling window. for e.g i need to calculate a 9 quarter ( 27months) average balance and cumulative losses. I have seen your window function video but that video lacks a real life problem solving component

  • @olganikitochkina8526
    @olganikitochkina8526 5 місяців тому +1

    This is the best explanation! Thank you so much ❤

  • @LuLu-in3ix
    @LuLu-in3ix 5 місяців тому +1

    your video is very helpful for me. thank you. 👍

  • @merkleinc2648
    @merkleinc2648 2 роки тому

    It was asked in one of my interview. And I was like yaa allah iske aage bhi kuch hota hai kya

  • @satheeshkumarak6708
    @satheeshkumarak6708 2 роки тому +2

    Brilliant one Bro. Waiting for Unpivot and Regular Expressions 😅

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you and noted bro

  • @SantanuRoy-oq2nv
    @SantanuRoy-oq2nv Рік тому +1

    Taufiq sir, absolutely clear the "without ORDER BY clause in postgre SQL Crosstab"...what ever customer is visible as per the sequence , CROSSTAB is grouping those visible data. That's why ORDER BY is mandatory otherwise this weird type data will be show. Thank you sir

  • @Braiam
    @Braiam 2 роки тому +1

    While useful this video confirms one of my believes: that pivoting on the database has the potential to be messy, and it's best dealt with in the application.

  • @Mayank-jw9yy
    @Mayank-jw9yy 3 місяці тому

    Amazing work please also share raw data of this amazing problem

  • @shamilpm262
    @shamilpm262 2 роки тому

    Data passing to Procedure by using
    Type table in postgreSql

  • @mahamuthashameem3250
    @mahamuthashameem3250 Рік тому +1

    till i watched this video, i was scared about pivot query, now i can understand it easily. thank yo so much for the video

  • @AntonioMartin-w1e
    @AntonioMartin-w1e 24 дні тому

    Williams Sarah Martinez Scott Williams Susan

  • @raheemaslam6748
    @raheemaslam6748 2 роки тому +2

    🤩 you deserve millions subscribers bro

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you so much :)

  • @jamesopoku8049
    @jamesopoku8049 2 роки тому +1

    Hi sir, good work done, please, may we get some videos on TRIGGER in postgresql....? Thanks

    • @techTFQ
      @techTFQ  2 роки тому

      Thank you and sure will do

  • @mauricioroldanramirez821
    @mauricioroldanramirez821 10 місяців тому

    With dynamic columns? we do not know how many colums as a coloumns?

  • @esteban3555
    @esteban3555 6 місяців тому

    in oracle, coalesce is definitely supported! 👍🏽

  • @abhijeetwadkar2564
    @abhijeetwadkar2564 2 роки тому +1

    Just wanted to say Thanks!!! Your sql joins video helped me crack my first tech interview. Kep up the good work brother.....

    • @techTFQ
      @techTFQ  2 роки тому

      thank you, Great to hear Abhijeet!

  • @amitpandey9222
    @amitpandey9222 2 роки тому +2

    Your every content are amazing and very well explained.Can you please create playlist around SQL query tuning and performance?

    • @techTFQ
      @techTFQ  2 роки тому +1

      Thank you Amit , glad you like them..
      And noted on the suggestion

    • @amitpandey9222
      @amitpandey9222 2 роки тому

      @@techTFQ thank you

  • @maghy_kethychannel
    @maghy_kethychannel Рік тому

    could you please make a video on date related functions

  • @AntonioMartin-w1e
    @AntonioMartin-w1e 19 днів тому

    Lewis Michelle Hall Donna Lee Ruth

  • @sandeepkhawas3367
    @sandeepkhawas3367 2 роки тому +1

    I m so thankful to you brother....i must say video is very informative which is helping me to increase my skills on SQL...!! 👍

    • @techTFQ
      @techTFQ  2 роки тому

      thank you Sandeep :)

  • @Beant1980
    @Beant1980 2 роки тому +17

    Thanks for the explanation. But instead of writing the names of Columns like JAN-21, FEB-21 inside PIVOT I use the function STUFF which does it dynamically. So, we can avoid writing the column names.

    • @muhammedsiraj6247
      @muhammedsiraj6247 2 роки тому

      Can you please write the syntax ?

    • @Beant1980
      @Beant1980 2 роки тому +2

      @@muhammedsiraj6247 try this.....
      1. SELECT @ColumnNames =STUFF(( SELECT DISTINCT ',' + QUOTENAME(PersonType)
      FROM databasename FOR XML PATH(''), TYPE
      ).value('.', 'NVARCHAR(MAX)'),1,1,'')
      2. PRINT @ColumnNames
      3. PIVOT (
      COUNT(PhoneNumberTypeID)
      FOR PersonType
      IN (' + @ColumnNames +
      ')
      )
      AS PIVOTTABLE'
      I have above points in a procedure, I can share the entire code with you. Thanks

    • @yassirnakkach5171
      @yassirnakkach5171 2 роки тому

      @@Beant1980 Hi Beant, can you please share the entire code with us?
      Many thanks!

    • @Beant1980
      @Beant1980 2 роки тому +1

      @@yassirnakkach5171 Hi, I have the code written in Microsoft SQL Server for AdventureWorks2016 database. I can email it you the text file?

    • @investshares8393
      @investshares8393 Рік тому

      Hi Beant, can you pls also share the entire code with me pls. Thanks so much

  • @bala9535
    @bala9535 2 роки тому +1

    Thank you so much... helping multi tools at same time...

  • @jarodelaro
    @jarodelaro 2 роки тому +1

    Mannnn you are simply the best ever, thanks so much, it helps a lottttttttttt!!!!

    • @techTFQ
      @techTFQ  2 роки тому

      Glad to hear that ☺️

  • @medhini2023
    @medhini2023 7 місяців тому

    Bro how can we do the same thing in workbench

  • @Manish-h7j8x
    @Manish-h7j8x 2 роки тому +1

    Great content tauphik sir, can you please create a separate video like this for unpivot...

    • @techTFQ
      @techTFQ  2 роки тому

      Sure bro will do it

  • @amulyaboda3126
    @amulyaboda3126 2 роки тому +1

    Sir if you don't mind can you make a video on analytical functions in sql

    • @techTFQ
      @techTFQ  2 роки тому

      I have already made it Amulya..
      Analytics functions are also called as window function so you can look for window functions videos on my channel

  • @SantanuRoy-oq2nv
    @SantanuRoy-oq2nv Рік тому

    Another thing I want to convey that CROSSTAB is more logical and concise than PIVOT of SQL server and Oracle as per my point of view.

  • @satishdandangi5499
    @satishdandangi5499 2 роки тому +2

    Sir, Please mention queries for oracle too

    • @techTFQ
      @techTFQ  2 роки тому +1

      I have already given Oracle query here. Do check the video

    • @shreyanshfaye3714
      @shreyanshfaye3714 2 роки тому

      @@techTFQ Please try for weekend classes this time🙏🙏

  • @sumibits
    @sumibits 2 роки тому +1

    Thank you Taufiq. This is really helpful.
    I have one quick question. All period which you have used in example and query are kind of static one (Jan21, Feb21 …). How do we make it more dynamic? Meaning, what if we have updated sales data for year 23 or 24… changing period value in query may not be good idea in long run. Any thoughts on this ?

    • @alexanderbykovdev7364
      @alexanderbykovdev7364 2 роки тому

      I haven't tried it yet, but can you try to use a query for the "for column value in ()" select and make some kind of distinct month-year in the same query?

    • @MiningForPies
      @MiningForPies 2 роки тому

      In SQL server dynamic pivots are not supported natively. You would need to generate the SQL as a text string and run sp_execute sql on that. It’s a really big missing feature, stops me using pivots at all just not worth the hassle

  • @lovekeshsinghkhalsa4251
    @lovekeshsinghkhalsa4251 2 роки тому

    Don't use simple query to attract people for like. Use some extraordinary concept ny way write query to show row n times according to column value of same table.

  • @maliktauqeer690
    @maliktauqeer690 2 роки тому

    Good video.
    You can wrap base query in (Double Dollar) $$ SUBQUERY $$ for postgres. Then you don't need to escape single quotes and makes it easy to read and write subquery.

  • @baburao25
    @baburao25 Рік тому

    Thanks for the in detail explanation. Can you provide WEBAPI for the same

  • @anburenganathan8369
    @anburenganathan8369 2 роки тому

    Thanks thoufig.. Is it possible make column names are dynamic.. I felt you are hard coding?

  • @jalalnayak6282
    @jalalnayak6282 Рік тому

    Hello sir, Can you plz show me how to insert the large data sets into SQL from excel. Csv/xls etc.
    Thank you

  • @iswillia123
    @iswillia123 10 місяців тому

    Thanks for the content you put out, Taufiq. One question: can't you put the coalesce/NVL in the base query? Then you wouldn't have to put 12 such statements after the pivot.

  • @riders_destiny9369
    @riders_destiny9369 2 роки тому +1

    TFQ im getting error in the PIVOT line its not turning into Yellow colour in sqldevoloper.....please help

    • @techTFQ
      @techTFQ  2 роки тому

      Sorry I don’t understand,

    • @riders_destiny9369
      @riders_destiny9369 2 роки тому +1

      @@techTFQ Actually I'm trying to execute it in oracle sql dvevoloper. But I'm getting error....missing right parenthesis in line 11 and 13 position....
      Please help

    • @techTFQ
      @techTFQ  2 роки тому

      Are you using the oracle query I gave ?
      Please use oracle query which u can download from my blog or discord

    • @riders_destiny9369
      @riders_destiny9369 2 роки тому

      @@techTFQ yes I'm using the oracle query form the blog.
      I guess pivot isn't supporting in oracle sql devoloper....

    • @riders_destiny9369
      @riders_destiny9369 2 роки тому

      @@techTFQ I found that i was using 11g db.....now i have upgraded to 21c and it works...

  • @AmanKumar-bi4jl
    @AmanKumar-bi4jl 2 роки тому

    Hey, I have two table one is student table with the field studentID, Name and other details and another is Attendance table with the field studentID and Date. I want to select record for each student for each day, fill record with the latter 'P' as present and 'A' as absent.
    How can I do??

  • @brianligat2038
    @brianligat2038 Рік тому

    The totals were a bit messy. Could you have added Total values along with the Customers and Months and created that with an initial WITH clause?

  • @chocoloaga575
    @chocoloaga575 Рік тому

    hi Sir, one Query. Can we use the pivot command without an aggregate function? Your Suggestions on this please.

  • @saifsayyed07
    @saifsayyed07 2 роки тому

    Hii can you share the same problem with joins ? I don't exactly have the table but need to get data from different tables. Like 3 or 4 tables

  • @padmavathisonnaila6600
    @padmavathisonnaila6600 2 роки тому

    Hi your videos are very helpful to me and I m begginer bit confused what is the difference between mysql,sql server, oracle,posgresql,plsql can u make a video on it please. Thank you in advance

  • @oloidhexasphericon5349
    @oloidhexasphericon5349 2 роки тому

    11:42, wish there was a way to do just "select * from sales_date" instead of explicitly specifying these column names

  • @celebrationsthecelebschoic575
    @celebrationsthecelebschoic575 2 роки тому

    Can't we use distinct customer in select, add both date and customer in group by, and then use sum(amount)??

  • @LogeshRagupathi-g9c
    @LogeshRagupathi-g9c Рік тому

    Hello Sir,
    Very good example about transpose method in SQL using PIVOT as well as its equivalent in other RDBMS.
    Kindly clarify whether there is any method to make IN part in pivot dynamic instead of hardcoding.
    Thank you

  • @sayantankar9141
    @sayantankar9141 2 роки тому

    can you expalin that last part where you are finding the total respective of each column. Please explain the query you used in mysql

  • @vijayendrasdm
    @vijayendrasdm 2 роки тому

    Hey Taufiq
    When are you planning to start fresh sql course ? Looking forward to enrol.
    Thanks.

  • @arunv1909
    @arunv1909 2 роки тому +1

    honestly thank you for the video , but i learnt sub query in a different way , and you adding alias name in front and few things made me confuse a bit tbh , i understood the concept , thank you

    • @techTFQ
      @techTFQ  2 роки тому

      thanks but don't confuse this with subquery. Ive made separate video for subquery.

    • @arunv1909
      @arunv1909 2 роки тому +1

      @@techTFQ but you wont call this a subquery? ohh , i thought the end part as corelated subquery

    • @techTFQ
      @techTFQ  2 роки тому +1

      This is the syntax for pivot operator..

  • @daoud175
    @daoud175 2 роки тому

    Writing every single column name in both inner and outer queries for sqlserver pivot is totally unpractical in real life application.

  • @addhyasumitra90
    @addhyasumitra90 Місяць тому

    mind blowing :)

  • @obbubhanuchandra9729
    @obbubhanuchandra9729 2 роки тому

    Do video to PLSQL real- time querys bro
    This video you do is help many persons bro

  • @kanwalhemant
    @kanwalhemant Рік тому

    The link of blog is not working

  • @shamilpm262
    @shamilpm262 2 роки тому

    Is it possible to use Cross Apply ?

  • @sayantankar9141
    @sayantankar9141 2 роки тому

    what is hardcoding in mysql means can you please elaborate it or please make a seperate vedio on it.

  • @AliBuKarrar
    @AliBuKarrar 7 місяців тому

    Thank you so much! Just a quick note, in oracle we can use coalesce.

  • @ramanat1424
    @ramanat1424 2 роки тому

    please tell me PL/SQL, POSTGRESQL both same or different?

  • @arefbegh5298
    @arefbegh5298 7 місяців тому

    Tqsm sir ❤️❤️