Which Is Better? SQL vs NoSQL

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024

Комментарии • 328

  • @dooddotjs3910
    @dooddotjs3910 3 года назад +352

    William Kylespeare

  • @leonardoleno5729
    @leonardoleno5729 3 года назад +194

    the first 15 second I felt like I clicked the wrong video 😂

  • @holypowerenjoyer6059
    @holypowerenjoyer6059 Год назад +39

    When he said 'To sequel or not to sequel that is the question' i was in tears. Truly one of the best lines of all times

  • @waltermeester301
    @waltermeester301 3 года назад +111

    In fact the "relational" part of database does not refer to the relations between different tables, but to the relational model as laid out by E.F codd. In this model, tables are called Relations and rows are called tuples.

    • @warriorfb2010
      @warriorfb2010 2 месяца назад

      I'm sure E.F codd was a smart guy, but I think it's misleading to say that all tables should be called relations. SOME tables represent a set of relations while other tables represent a set of entities. I also don't like the tuple term. "Tuple" means a thousand different things now.

  • @nedweingart4963
    @nedweingart4963 2 года назад +13

    Was really stuck with what setup to choose for a new project. I use SQL at work and NoSQL for side projects and have always felt more comfortable with NoSQL. Your last point about choosing whatever you're most comfortable with really resonated with me, great video!

    • @imluctor5997
      @imluctor5997 Год назад

      There are reasons why big companies use nosql for one thing and sql for another. Google Docs will probably use nosql to store your documents since most you do is write to it and only read the document once to start editing it. As a company its important because you can reduce costs since the performance is better but you also use less resources. Thats also why autoscaling is used to reduce useless resources.

  • @sabinbaral4132
    @sabinbaral4132 3 года назад +229

    Your explanation are nice
    If you show slides and image to explain
    it will be much better and much easier for beginners to relate things you say and understand better

    • @maxfrischdev
      @maxfrischdev 2 года назад +18

      Give taking your own notes a try! Serious, listen to a video more than once if needed, pause and take a short note.
      Much better understanding AND better glued in memory, than just "consuming"/watching someone's slides! 🖖🏻👍🏻☕

    • @harshitanag2452
      @harshitanag2452 2 года назад +1

      @@maxfrischdev Yeah right

    • @arcanepersona1676
      @arcanepersona1676 Год назад

      @@maxfrischdev expert tip, thanks Max.

  • @niravparmar7856
    @niravparmar7856 11 месяцев назад +7

    bro sold his all furniture to buy a guitar 🎸

  • @sujoydutta920
    @sujoydutta920 Год назад +6

    I always get confused on these two DBs but you explanation was very clear and made a lot of sense

  • @WaldoTheWombat
    @WaldoTheWombat 3 месяца назад +1

    So to sum-up
    SQL
    - fast to read
    - you can count on constant a format
    NoSQL
    - fast to write
    - hard to update
    - better at handling lots of connections at the same time (why?)
    - better at scaling
    - good for unstructured data

  • @IvanRandomDude
    @IvanRandomDude 3 года назад +17

    3:05 Redis saves data to the disc periodically and loads it on startup.

    • @dmytromalikin2560
      @dmytromalikin2560 2 года назад

      But storage persistance strategies can be modified.

  • @69memnon69
    @69memnon69 3 года назад +29

    SQL can handle many connections (you made it sound like SQL can only manage a handful of connections). If there is an appearance of “slowness” it’s likely related to the isolation level \ locking, which can be managed with good database design (9/ 10 times perf issues are attributable to poor developer choices). The choice between the two systems should be about isolation level requirements , scale (data volume \ geo-distribution) and the actual data model being stored.
    If you’re dealing with high transaction financial data, your likely not gonna go no sql. Likewise, if your storing IOT data then no sql is going to be better. If you’re never going to shard your data, mongodb is not worth it as SQL will outperform it.

  • @oldclient
    @oldclient 3 года назад +6

    A legit conclusion. Both technologies are proportionally good. The SQL allows vertical scaling, while NoSQL - horizontal scaling. The SQL simplifies the usage of MVC, MVVM, Object Validation and bindings, while the NoSQL simplifies the ability to make changes into projects (very useful for e-commerce dbs).
    The idea to use JSON data as TEXT in SQL is promising as something intermediate.

  • @CodingNuggets
    @CodingNuggets 3 года назад +17

    I've been dabbling in SQL a lot more lately. I'm actually considering building my newest project using it as the database. Most likely going to go with PostgreSQL. Thanks for the content Kyle. Much love my friend!

  • @emacsultron6212
    @emacsultron6212 3 года назад +15

    This guy legit looks better than most of the male models appearing on product advertisements and could easily land ads showcasing hair products.

    • @jimhalpert9803
      @jimhalpert9803 3 года назад +1

      He reminds me of the Winklevoss twins for some reason lol (the movie actors not the real ones)

  • @demetrous-yt
    @demetrous-yt 3 года назад +2

    Nice, quick explanation and that top-left corner perfectly aligned with room’s corner line👍

  • @lifeform106
    @lifeform106 3 года назад +12

    This actually really helped me understand both! Currently I’m learning MySQL with php and I may consider using react with it. I say MySQL I enjoy for your explanation of the great structure and columns and I care about readability. Though I may learn mongodb in larger scale applications in the future. Since mongodb sounds great for big projects

  • @smsibasish
    @smsibasish 3 года назад +21

    Please make this series of comparing different technologies like SSR vs CSR, React vs Vue, Tailwind vs Bootstrap etc

    • @WebDevSimplified
      @WebDevSimplified  3 года назад +10

      That's a good idea

    • @smsibasish
      @smsibasish 3 года назад

      @@WebDevSimplified A humble request for more TypeScript content please _/\_

  • @goldenfibonacci7860
    @goldenfibonacci7860 2 года назад +10

    This was helpful. It would be even more helpful if you provide brief reasons for each claim on why SQL or NoSQL is better. For example, why is it usually quick to write but harder to read from a NoSQL DB?

    • @powerplayer75
      @powerplayer75 2 года назад +1

      i think its because NoSQL you can just shove objects in the database because order doesnt matter since the processing is done upon queries, hence why its harder to read.

    • @Rhodair
      @Rhodair 2 года назад +6

      it's not entirely accurate either - it depends on the scenario - there are some query examples that have nosql being 100x faster at reading compared to a sql query that involves multiple joins compared to a nosql read where it's just pulling a full document based on id
      whether sql or nosql is better fully depends on use case

    • @cyndijohnson5473
      @cyndijohnson5473 Год назад

      Because NoSQL is for the times you don’t need to READ the data

  • @amstripe7086
    @amstripe7086 3 года назад +3

    Among the people who talk about programming on youtube, I prefer your approach. You always bring the subject well summarized, contextualized and didactic. It is complex to do simple things, isn't it? ... Only those who have very clear reasoning can do this. The simple fact that you put the noSQL image as branches of a tree, already shows your skill. Keep it up... and you will be helping to build a solid foundation for the evolution of technology.

  • @luclorencini
    @luclorencini 3 года назад +11

    Imo you missed the most important feature of sql databases, which is ACID transactions. That's the fundamental stone of pretty much every enterprise application

    • @shexec32
      @shexec32 3 года назад +1

      True, although the larger enterprises have been transitioning to microservices and cloud architectures. Due to the CAP theorem, these distributed solutions are ACID non-compliant*.

  • @nonstopper
    @nonstopper 3 года назад +37

    Hey man, usually a fan of the videos but I feel like this one fell pretty short. Alot of surface explanation without any real world examples which I feel would help extremely

    • @katrinabryce
      @katrinabryce 3 года назад +1

      An example: Suppose you are storing customer shipping addresses.
      On a SQL database, you might have columns for house number, street, city, state, zip code; which works for US addresses, but not necessarily for addresses in other countries. On MongoDB, you could format their address differently depending on which country they are in. But the database would not check the address is in the correct format, it would accept anything, you would need to do your checks in the application logic.

  • @shail0124
    @shail0124 2 года назад

    This is first unbiased video I have watched till now. Everyone else telling that NoSql is just better and whatever advantage they tell can also be applied on SQL

  • @kavindesivalli
    @kavindesivalli 3 года назад +5

    Really nice start with the William Shakespeare

  • @jaypasi509
    @jaypasi509 3 года назад +3

    That sloved my confusion... thanks 😊
    And im also waiting for Javascriptsimplified course to reopen registration.

  • @GuRuGeorge03
    @GuRuGeorge03 3 года назад +3

    bigger companies use tons of different database types for different purposes but imo if u learn how to optimize SQL databases really well then u can apply these concepts to the other types

  • @praz7
    @praz7 3 года назад +10

    Correct me if I'm wrong but if you're familiar with DBMS concepts you can adapt to both SQL and Nosql right?

    • @tanzimibthesam5861
      @tanzimibthesam5861 3 года назад +1

      100% no brainer you need to how to connect foreign keys joins left join more specifically

    • @Gadrawingz
      @Gadrawingz 3 года назад

      Sure!

  • @the.baxtian
    @the.baxtian Год назад

    Man, you speak very fast but with a excellent pronunciation. It is really good for me, since I'm learning english. xD. Excellent comparative, and thank you for comment about Json in PostgreSQL.

  • @ApoorvMote
    @ApoorvMote 3 года назад +2

    If you use it properly then there are zero joins in NoSQL database and reading is faster than SQL. Cost of 1 GB storage is super low. So you can repeat data without worry.

  • @marcusgaius
    @marcusgaius 3 года назад +33

    Hmmm, I'm storing json data to MySQL atm.

    • @chizuru1999
      @chizuru1999 3 года назад +4

      yup you can store anything and then just parse the string back into JSON....
      Win win haha.

    • @hnccox
      @hnccox 3 года назад +3

      @@chizuru1999 How are you going to search through the string then? With NOSQL you can search and select on the Objects

    • @GeronimOCZECH
      @GeronimOCZECH 3 года назад +1

      There is always some rebel who do this. LMAO

    • @cloudfox1908
      @cloudfox1908 3 года назад +11

      @@chizuru1999 That is not a win win. Parsing data takes time, decreasing performance. If you want speed, actually use columns and rows.

    • @user1994gms
      @user1994gms 3 года назад

      @@hnccox how can you search on select objects in nosql.. nosql doesn't have schema and there would be only 1 unique key to differentiate the data

  • @chrisvouga8832
    @chrisvouga8832 2 года назад +5

    4:54 Isn’t one of the benefits of a nosql database like mongodb is that you optimize for reads by having denormalized data at the cost of more costly writes?

  • @drmangrum
    @drmangrum 3 года назад +2

    I'd lean towards a NoSQL database is starting a new project with potentially large amounts of data. The biggest weakness isn't reading data, it's searching data, this problem is true for both paradigms. Most large applications get around this by using an index like SOLR or Elastisesrch to grab the UID for a row and then query the database with those UIDs. That is very responsive.
    What really makes the NoSQL approach attractive is you're not bound to a schema that requires a lot of work to change. If you want to change your data structures a bit, you just have to change the mappers.

  • @RetroSpectrum7
    @RetroSpectrum7 2 года назад

    I love your channel!!! Can't stop watching. All your content is the best ☺️

  • @akin242002
    @akin242002 3 года назад +10

    MySQL is great for correlational studies, especially for routine data. However, it takes time to organize the tables.
    No-SQL is great for chaotic and dynamic based data. Think of data tracking a bipolar person.

  • @indiansoftwareengineer4899
    @indiansoftwareengineer4899 3 года назад +3

    oh man, you brought Sheksphere....
    love you man.

  • @rainbowlable
    @rainbowlable 2 года назад

    best overview and comparison i've got so far! thanks a lot! 👍

  • @SuboptimalEng
    @SuboptimalEng 3 года назад +14

    I use Mongo cause the logo looks cool 😎

    • @arthurweasley5857
      @arthurweasley5857 3 года назад +6

      ahahahah, im switching to ruby cause it sounds cool and logo is just so beautiful

    • @hassanali-yi4bu
      @hassanali-yi4bu 3 года назад

      @@arthurweasley5857 nobody uses ruby nowadays in the industry, better use mongodb or mysql

  • @olajideabdul-qahar
    @olajideabdul-qahar Год назад

    I absolutely love the intro and the entire explaination

  • @cmark123
    @cmark123 Год назад

    you missed one of the main points, the acid vs base model.
    most of the time, I see those models as one of the main decision maker on what to use.

  • @YK_data
    @YK_data 3 года назад +3

    Sql generally has more advantages. For example it offers you ACID approach. You can use transactions if you want your data to be coherent. Also you can use NoSql approach in a Mysql database if you want. But you cannot expect a NoSql data to be coherent. So selecting Sql over NoSql will be a good decision if there is no special situations.

    • @1wb7kj
      @1wb7kj 3 года назад

      MongoDB supports transactions

  • @gauravruhela007
    @gauravruhela007 3 года назад

    Really appreciate the way you explained this controversial topic. Keep it up bro

  • @yannistheodorakopoulos5916
    @yannistheodorakopoulos5916 3 года назад +2

    I came here to appreciate PostgreSQL and your Ibanez lady

  • @MBDiscover
    @MBDiscover 3 года назад

    Huge thanks. I think if you add a table of comparing these two type would be much better for summarizing.

  • @ExcelTutorials1
    @ExcelTutorials1 2 года назад

    Love this video! I greatly appreciate the perspective!

  • @pawekoaczynski4505
    @pawekoaczynski4505 3 года назад +2

    a video I wish I had watched when I was making my research on the topic a while ago

  • @elmyllo4219
    @elmyllo4219 3 года назад +6

    omg I swear I just thinking about this question in few minutes before open youtube and then... this happened

    • @aammssaamm
      @aammssaamm 3 года назад +3

      Have you ever tried thinking of a couple of millions of dollars?

    • @erwinschrodinger2320
      @erwinschrodinger2320 3 года назад +1

      You absolute dreamer.

    • @elmyllo4219
      @elmyllo4219 3 года назад

      I know it's ridiculous right. but the same time it was mindblowing to me

    • @elmyllo4219
      @elmyllo4219 3 года назад

      But, you know.. I couldn't hold back my own thoughts, it just randomly passed

    • @aammssaamm
      @aammssaamm 3 года назад +1

      @@elmyllo4219 may be it’s not that ridiculous. 😂

  • @TheSesameStreetGang
    @TheSesameStreetGang Год назад

    "To sql or not to sql, that is the question. Whether tis nobler in the mind to suffer the keys and joins of outragous databases, or to take arms against a sea of tables and by opposing end them."

  • @cyndijohnson5473
    @cyndijohnson5473 Год назад

    SQL: for times you need to read & write data
    NoSQL: for times you want to hoard json that you don’t want to bother parsing and you rarely need to look anything up.

  • @cesaremannino2774
    @cesaremannino2774 3 года назад

    Thank you man, is just what I was looking for!

  • @bartomiejbiaobrzewski5225
    @bartomiejbiaobrzewski5225 Год назад

    That's the explanation I needed. Thanks a lot man.

  • @JC-sh6im
    @JC-sh6im 3 месяца назад

    Um, Sql and NoSql are opposite ? Not so, just somewhat different take on structure vs flexibility, both are records of data.

  • @abelrasheed116
    @abelrasheed116 3 года назад +1

    What is Chris Pine doing here ?
    Also sick Jackson ,just chillin in the corner

  • @MrTatooland
    @MrTatooland 2 года назад +1

    Hello Kyle, big fan of your videos ! I don't understand why wou say that non-relational databases can be more "fuzzy" because the data written goes though less checks compared to a SQL db. If I take MongoDB for example you have to create a model that define what kind of data to expect (and possibly further restrictions) and to setup some validation criteria that data has to go through to be stored in the database. Have a nice day.

    • @sanjitselvan5348
      @sanjitselvan5348 Год назад +2

      The thing with mongodb is that you DON'T HAVE TO define models, but you CAN if you want to.

  • @aman9267
    @aman9267 3 года назад +2

    For Internet of Things like Smart Energy Meters, which will be a better solution for storing the data?

    • @-xeL
      @-xeL 3 года назад +1

      i personally would go with MySQL/MariaDB, but NoSQL like ElasticSearch/Apache Solr is fine too - this heavily depends on your application needs.

    • @mprone
      @mprone 3 года назад +1

      In my exp (only done small projects at university/intership), noSQL are a little better for IoT but it still depends on the application

    • @Mark.Brindle
      @Mark.Brindle 3 года назад +2

      My home automation (power usage, solar generation) is in MongoDB. First few years it was in SQL-Server, then switched to MongoDB. I'm storing about 130 samples per minute for the past 5 years, I aggregate the date / device into 1,15,30,60 min, 24, month, year. It's simply flawless.

  • @ashwanikumar415
    @ashwanikumar415 2 года назад

    Amazing explanation , always motivates me to learn futher

  • @SurenEnfiajyan
    @SurenEnfiajyan 3 года назад +1

    MySQL also supports JSON columns.

  • @AbZen7
    @AbZen7 3 года назад +5

    Play something with that guitar

  • @xybersurfer
    @xybersurfer 2 года назад +2

    i think you are missing some key points. almost everyone is dealing with relational data (SQL). NoSQL takes the responsibility for data consistency away from the database, and puts it on all applications using the database, which is not ideal. i like most of your other videos

  • @yusra6864
    @yusra6864 6 месяцев назад

    how can i work on SQL as Team in local host database ?

  • @aminelahrim8142
    @aminelahrim8142 3 года назад

    Best practice for me : Sql for Database and Firebase Remote Config as a json config for the App

  • @z1982_
    @z1982_ Год назад +1

    Hello! Coming from NoSQL (Mongo) to SQL
    What I don't like with Mongo is that if you delete a document (A) in one model that references another document from another model (B), then B is not deleted, you need to handle this manually
    If I understand well, there is no such problem with SQL databases ?

    • @learnmore5438
      @learnmore5438 Год назад

      the video says that SQL pretty slow to query if there are a lot of users accessing it

    • @alexfisher2889
      @alexfisher2889 Год назад +1

      It depends on DBA. Problem that you mentioned is called referential integrity. If you don't implement correct technique during the design you might get a situation when a row from table A is deleted and another row in table B still references deleted row in table A. Thus, you will end up with inconsistent or redundant data. SQL server for example uses a way to CASCADE the changes (either update or delete) by primary key, this way all the references to the deleted or update data will propagate through out the database :)

  • @chadgregory9037
    @chadgregory9037 2 года назад

    the Zach Morris of web dev

  • @ashermanangan
    @ashermanangan 2 года назад

    thanks your explanation is very good. SQL is the best for relational data.

  • @debanjanbarman7212
    @debanjanbarman7212 3 года назад +5

    You missed two important things:
    1/ Transactions
    2/ Consistency

    • @Mark.Brindle
      @Mark.Brindle 3 года назад

      MongoDB has full ACID transactions across shards, also atomic transactions. Consistent across multiple DBs in a cluster by setting write concern to majority

    • @debanjanbarman7212
      @debanjanbarman7212 3 года назад

      @@Mark.Brindle Thanks, I wasn't aware of ACID transactions in MongoDB.

  • @craftedtunesentertainment5569
    @craftedtunesentertainment5569 3 года назад +1

    Hey what do you think of services like Firebase in context of whether or not it'd be the future of database? Also is the pricing worth it?

  • @ravish6280
    @ravish6280 3 года назад +2

    I had a talk with a software architect who completely messed up my head by giving me multiple reasons on how a nosql is better than mysql for any large scale app. His arguments were mostly on how mysql can be a headache on architectural level when an app grows.

    • @Davide73
      @Davide73 2 года назад

      Ummm... he is not a software architect; if an app grows, you can create more tables, you can "alter table", just matter of seconds. The freedom he/she lets you believe you have in no-sql will be a nightmare very soon....

  • @PierreDBA
    @PierreDBA 7 месяцев назад

    Fast Fast and very every useful. Thanks

  • @claytonp23
    @claytonp23 3 года назад

    Nearing 500k subs! What an achievement!

  • @kipfitpal
    @kipfitpal 3 года назад +1

    Kyle, you're great teacher!

  • @renanangelodossantos4726
    @renanangelodossantos4726 2 года назад

    If i use a SQL database as a NoSQL the performance would be the same? For example, using PostgreSQL Json column.

  • @hawkdykes9054
    @hawkdykes9054 Год назад

    Kyle, I never thought to ask.. did you do the intro riff yourself??

  • @Adnanalramel
    @Adnanalramel 3 года назад +1

    I like your keyboard typing sounds , Can I ask you for a link on amazon for this keyboard? Thank you. : )

  • @inemanja
    @inemanja Год назад

    I still do not understand why would I use noSQL when I could simulate it in mySQL by (for example) adding a text field that contains some json. Is ti much faster? Or is there something else I'm missing)

  • @johnmukendi7650
    @johnmukendi7650 3 месяца назад

    I liked that intro

  • @chinaboytag1
    @chinaboytag1 Год назад

    I've always heard people hating on mongo, like theo, but I've never quite understood why? I like postgres and find it to be pretty good, but a lot of times it feels stricter and slower, in my experience. I'm far from a database expert, but I really find it odd that people are so obsessed with the "relational" model. As if you can't essentially use foreign keys or do joins in mongodb. You pretty much can, though they might go by different names, and I've heard many people point out how silly a JSON oriented database is, but I can't really see an argument for why excel spreadsheets are so much better. I don't see anything wrong with either approach, but I'm struggling to see a lot of advantages for using antiquated SQL dbses other than certain key performance metrics and data integrity. That being said, it's just weird because NOSQL gets a lot of hate, but I've yet to hear the legitimate criticisms of it. I mean, I'm sure there are some, but I don't really understand why people think that data can't have relationships in MongoDB. I mean, you could argue that the structure of SQL databases causes them to more often return the data that you are looking for, but it also creates a lot of complexity in rules, functions, schemas, writing, etc. On the flip side, with NOSQL it always seems like the structure of your queries is a lot more important than the structure of your data. The end result tends to be pretty similar, but the approach is quite different. Is this just the angry grumblings of devs that don't like to change their process for doing things or are there greater issues with MongoDB "underneath the hood" so to speak? I'd really like to know because on the surface most of these arguments seem kind of arbitrary unless you get into the details. Good video. I mostly agreed with the points. I could certainly see the devil being in the performance metrics, but it doesn't really seem to be in the capabilities.

  • @dakshverma8198
    @dakshverma8198 3 года назад +1

    With some illustration and diagram the video would have been much more interactive and interesting

  • @shidqi100
    @shidqi100 3 года назад +1

    Make video about mysql or mongodb with redis as a cache

  • @nicetomeetugaming7024
    @nicetomeetugaming7024 2 года назад

    Amazing explanation sir!

  • @kotojava
    @kotojava 2 года назад

    it's not about comfortability. it's about cap theorem.

  • @dugtrioramen
    @dugtrioramen Год назад

    Everything I've been reading and watching has been saying an opposite conclusion, that nosql is better for reads while sql is better for writes.
    This is all confusing me, but what I got was nosql expects you to duplicate data wherever you need it. So when making requests, all the relevant data you need is right there and the database doesn't have to do any extra searching for it. Sql wants you to have data in one place, and just make references to it wherever you need. So if you ever want to update data, you just do it in that one place it's defined and it'll be accessible everywhere.
    That'd make sql way better for writing data (as you only have to do it in 1 place), and nosql way better for reading data (as all your relevant information is already together)
    Can someone correct if I'm wrong, but isn't this the exact opposite of what this video is saying?

  • @ratul1125
    @ratul1125 3 года назад

    I will learn both of these.

  • @TrixterTheFemboy
    @TrixterTheFemboy Год назад

    Is there some morse code or som'n in how much he's blinking?

  • @muslumturk4111
    @muslumturk4111 Год назад

    Awesome, thank you.

  • @Zabawne_Gierki
    @Zabawne_Gierki 3 года назад +1

    I wonder, what about encoding foreign characters?
    I made a project with MySQL and I had lots of problems with encoding Japanese (language learning website). I hope other databases are set to support utf-8 by default.
    I had to set up encoding in like maybe 4 places for it to work...

    • @kezif
      @kezif Год назад

      you could specify charecter encoding when creating column

  • @xuover
    @xuover 3 года назад

    Video title is click bait & I feel you didn’t explain WHY the different NoSQL exist. What issue are they each trying to solve (i.e. why would they out perform a solution implemented in SQL)? NoSQL is a collection of DB paradigms (key-value, docstore, search engine, graph, etc). It would have been good if you had explained the key points that differentiate each type… imho

  • @DevlogBill
    @DevlogBill 2 года назад

    Watched the rest of your video, is NoSQL databases easier to use in comparison to MySQL?

  • @Xaoticex
    @Xaoticex Год назад

    Definitely need some images, slides during the explanations.

  • @TokyoXtreme
    @TokyoXtreme 3 года назад +1

    “The money you enjoy wasting is not wasted money.”
    - JRR Tolkien (The Chronicles of Narnia)

  • @nifares8744
    @nifares8744 3 года назад +5

    PostgreSQL | Golang.

  • @ChumX100
    @ChumX100 3 года назад

    Everybody in SQL be gangsta till they have to deal with user-defined models, complex migrations or horizontal scaling.

  • @HumanityCollected
    @HumanityCollected 3 года назад +1

    Just depends on what your app needs.

  • @DevlogBill
    @DevlogBill 2 года назад

    Hi Web dev Simplified; I would like to create my first CRUD app learning REACT at the moment. Soon I will start learning node.js and afterwards MySQL. I know how to perform basic queries within tables in a database but not between multiple tables. I am familiar with creating new database and creating new tables too. My question is I am decent on the front end could you provide resources which teach how to use a backend technology alongside MySQL or even postgreSQL to store your data for a basic blog app. My thoughts are to create a blog app which will allow a maximum of at least 10 people to create a very simple profile and post messages on a board. No securities, no cookies something locally from my hard drive. Figured I start small and work my way up. Any guidance would be appreciated.

  • @thehoarder9771
    @thehoarder9771 3 года назад

    I want to create a database in order to receive data from the Arduino meteorological monitoring device (temperature - irrigation speed - humidity). The degree of measurement is sent every 30 minutes, so what is the best type of database

  • @plxcxs5855
    @plxcxs5855 2 года назад

    sorry love your vids super strong content but wasn't the quote from hamlet, or was that part of the joke ??

  • @devgatling
    @devgatling Год назад

    thank you for this!

  • @morphman86
    @morphman86 3 года назад

    Everybody going on about "are you a sequel type, or an ess-cue-ell type?", and I'm here having pronounced it "squeal" for the past 15 years...

  • @rahulsood81
    @rahulsood81 5 месяцев назад

    This dude deserves to be the next Peter Parker (a.k.a. Spiderman). Hollywood, are you listening ?💡💡📢📢📢📢📢

  • @doniaelfouly4142
    @doniaelfouly4142 4 месяца назад

    thanks

  • @migueldomingos4570
    @migueldomingos4570 3 года назад +9

    I use firebase so I am "obliged" to use nosql. I would love if there was a SQL equivalent of firebase xD

    • @AravindVNair
      @AravindVNair 3 года назад +5

      Check out Supabase

    • @migueldomingos4570
      @migueldomingos4570 3 года назад +3

      @@AravindVNair I didn't know about that one. Thanks for telling me about it:-)

    • @AravindVNair
      @AravindVNair 3 года назад +3

      @@migueldomingos4570 Happy to help! :)

    • @bobDotJS
      @bobDotJS 3 года назад +3

      @@AravindVNair I'm in the same boat, I absolutely love MySQL and Firebase and I've been hoping for a long time that something like that would exist. I almost threw up from excitement when I found out about supabase

    • @AravindVNair
      @AravindVNair 3 года назад +1

      @@bobDotJS Glad you found it useful! :)

  • @tanzimibthesam5861
    @tanzimibthesam5861 3 года назад +2

    Other than scalability n maybe high performance in specific cases SQL beats No SQL any day

  • @marshiemaaz5161
    @marshiemaaz5161 Месяц назад

    i was like woah where the hell am i in the first 10 seconds