#dbms search results
๐ Database Management System (DBMS) is the backbone of every software system. Iโve made handwritten DBMS notes covering all key concepts. #SQL #Database #DBMS #HandwrittenNotes Sharing a few free pages here ๐งต๐ 1/n
L38(32) full join = everything from both. MySQL lacks it! use UNION: select * from cust c left join ord o on c.id=o.id union select * from cust c right join ord o on =; #DBMS #SQL #Databases
Week 12 Sunday Class From ERD โ DB Models โ API Built a full IPL backend flow and finally saw how design impacts everything Good schema = clean backend Bad schema = struggle This one clicked ๐ก #Backend #SystemDesign #DBMS #chaicode @surajtwt_
โจ From Kernel to Queryโpowering future tech minds! Student Development Program @ SRS FGC ๐ Sessions on OS, Shell & DBMS by Dr. Nagesh B S (HoD, MCA, RNSIT) ๐ป๐ #StudentDevelopment #DBMS #OS #RNSIT
In today's class we designed a complete IPL management system from scratch. Started with ER diagram - entities, relations, junction tables. Converted it into models and structured database properly. Then moved to routes and actual backend flow @nirudhuuu #DBMS #ChaiCode
We invite you to review our research & articles about *hard* real-time #DBMS. If you believe that something on this page needs to be changed, or if you have something to add, please let us know in the link on the page. t.ly/1HqqO #RealTimeData #RTOS #EmbeddedSystems
L38 (29) inner join = where your data overlaps. only returns matching rows. select c.name, o.ordername from customer c inner join orders o on c.id=o.id; tip: "join" defaults to inner join! #DBMS #SQL #Databases
L38 (34) self join = table joined to itself. rule: MUST use aliases to separate rows! select m.name as mentor, s.name as student from student m join student s on m.s_id = s.mentor_id; tip: best for hierarchical data. #DBMS #SQL #Databases
The importance of Data, Data Access, and Data Connectivity has never been more evident than in the age of AI. This makes data access protocols like ODBC even more critical, as they empower AI Agents and their underlying frameworks to remain Database Management System (#DBMS)
L38 (31) right join = all right + matches (else NULL). select c.name, o.ordername from customer c right join orders o on c.id = o.id; tip: rarely used! devs prefer flipping tables & using left joins. #DBMS #SQL #Databases
Assignment done โ Built a mini IPL database ER diagram with entities like Players, Teams, Owners, Sponsors, and Broadcasters Now using the same ER model in todayโs class to develop our own project based on it . #chaicode #DBMS #ERDiagram #IPL #DataModeling
Built a full IPL management system from scratch, starting with DataBase design, converting it into clean database models, then implementing routes and connecting the complete backend flow . @surajtwt_ @ChaiCodeHQ @nirudhuuu #Database #DBMS #ChaiCode #BackendDevelopment #ERD #API
Week 11 of my learning journey ๐ Started **DBMS with Shubham Sir**. @Hiteshdotcom | @piyushgarg_dev |@nirudhuuu #DBMS #SQL #LearningJourney
Todayโs cohort session โ IPL management system ERD โ entities, relations, embedding/references, junction tables โ models + DB structuring โ routes + backend flow from diagram โ working backend #chaicode #backend #DBMS
Designed a complete IPL management system from scratch today Started with ER diagram โ entities, relations, junction tables Converted it into models and structured database properly Then moved to routes and actual backend flow #DBMS #ChaiCode @nirudhuuu @ChaiCodeHQ
SQL JOINs look the same. Your DB disagrees. Nested Loop --> brute forces it Hash Join --> builds a hashmap Merge Join --> sorts, then glides One query. Three completely different strategies. Do you know which one your DB picks? #DBMS #SQL
L38 (34) self join = table joined to itself. rule: MUST use aliases to separate rows! select m.name as mentor, s.name as student from student m join student s on m.s_id = s.mentor_id; tip: best for hierarchical data. #DBMS #SQL #Databases
L38 (33) cross join = the cartesian product. every row from table A pairs with every row from B (m * n). select * from cust cross join ord; tip: careful! 1,000 users ร 1,000 orders = 1 million rows. mostly used to generate test data or item variations. #DBMS #SQL #Databases
It's Finally Happening! Join us on 30th April for Live Keynotes, Dev tools and gain access to the most premium #cloud and #dbms system. Book a place: vasuki.cloud/io #x #vasukiitech #io #livekeynotes #devtools
L38(32) full join = everything from both. MySQL lacks it! use UNION: select * from cust c left join ord o on c.id=o.id union select * from cust c right join ord o on =; #DBMS #SQL #Databases
โจ From Kernel to Queryโpowering future tech minds! Student Development Program @ SRS FGC ๐ Sessions on OS, Shell & DBMS by Dr. Nagesh B S (HoD, MCA, RNSIT) ๐ป๐ #StudentDevelopment #DBMS #OS #RNSIT
L38 (31) right join = all right + matches (else NULL). select c.name, o.ordername from customer c right join orders o on c.id = o.id; tip: rarely used! devs prefer flipping tables & using left joins. #DBMS #SQL #Databases
๐Ready to crack your SQL Server interview? Start learning the real Interview Questions Series asked in top companies. Visit our channel now and level up your skills! youtube.com/shorts/z_lMsIVโฆ #dbms #Data #sql #sqldatabase #sqldba #DBA #DBAProgram #madesimplemssql #Analyticss
youtube.com
YouTube
SQL Server Interview Questions Part - 4 | #sql #education #coding |...
L38 (30) left join = all left + matches (else NULL) select c.name from customer c left join orders o on c.id=o.id where is null; tip: is null โ 0 buys #DBMS #SQL #Databases
Why did embedded world 2026 honor eXtremeDB/rt with the embedded award: Software? #eXtremeDB/rt is the only COTS hard real time #DBMS. It also eliminates the flash file system and reducing write amplification. Learn more t.ly/jnUSB #EmbeddedSystems #flashmemory
L38 (29) inner join = where your data overlaps. only returns matching rows. select c.name, o.ordername from customer c inner join orders o on c.id=o.id; tip: "join" defaults to inner join! #DBMS #SQL #Databases
Week 12 Sunday Class From ERD โ DB Models โ API Built a full IPL backend flow and finally saw how design impacts everything Good schema = clean backend Bad schema = struggle This one clicked ๐ก #Backend #SystemDesign #DBMS #chaicode @surajtwt_
Built a full IPL management system from scratch, starting with DataBase design, converting it into clean database models, then implementing routes and connecting the complete backend flow . @surajtwt_ @ChaiCodeHQ @nirudhuuu #Database #DBMS #ChaiCode #BackendDevelopment #ERD #API
Todayโs cohort session โ IPL management system ERD โ entities, relations, embedding/references, junction tables โ models + DB structuring โ routes + backend flow from diagram โ working backend #chaicode #backend #DBMS
L38 (28) joins combine rows from tables via shared columns. inner = matched rows only. left/right = 1 side all + matches. full = everything from both. cross = cartesian. self = table to itself. fk not required โ just matching data. #DBMS #SQL #Databases
In today's class we designed a complete IPL management system from scratch. Started with ER diagram - entities, relations, junction tables. Converted it into models and structured database properly. Then moved to routes and actual backend flow @nirudhuuu #DBMS #ChaiCode
Week 11 of my learning journey ๐ Started **DBMS with Shubham Sir**. @Hiteshdotcom | @piyushgarg_dev |@nirudhuuu #DBMS #SQL #LearningJourney
Why did embedded world 2026 honor eXtremeDB/rt with the embedded award: Software? #eXtremeDB/rt is the only COTS hard real time #DBMS. It also eliminates the flash file system and reducing write amplification. Learn more t.ly/jnUSB #EmbeddedSystems #flashmemory
๐๐ฎ๐๐ฎ ๐๐ถ๐ฑ๐ฒ ๐ฏ๐ฒ๐ด๐ถ๐ป๐ ๐ โข Creating databases and tables โข Inserting and selecting data โข Filtering records โข UPDATE table โข DELETE with WHERE โข ALTER TABLE operations โข DISTINCT, sorting, LIMIT, OFFSET โข Aggregations โข GROUP BY #DBMS #SQL #Backend #ChaiCode
We invite you to review our research & articles about *hard* real-time #DBMS. If you believe that something on this page needs to be changed, or if you have something to add, please let us know in the link on the page. t.ly/1HqqO #RealTimeData #RTOS #EmbeddedSystems
Read the insightful new article "Engineering Real-Time: Lessons Learned While Chasing Determinism" part 1 in @embedded_comp t.ly/oJbaX #realtimedata #DBMS #deterministicdatabase
Smart Elevator Control DB Design! - Static vs. Dynamic data separation - Real-time elevator_status tracking ๐ - Dispatch logic: Request โ Assignment โ Ride Log - Full Maintenance & Analytics history @Hiteshdotcom @nirudhuuu @ChaiCodeHQ #DBMS #ChaiCode #Backend
Day 1 of #WinterArcChallenge โ๏ธ ๐ DSA: Learned Bellman-Ford algorithm revised Merge Two Linked Lists ๐พ CS Fundamentals: Studied DBMS sharding, partitioning & scalable systems โกRevision: JavaScript basics Letโs keep pushing! ๐ช #DSA #DBMS #SystemDesign #JavaScript #Coding
๐๐ฟ๐ผ๐บ ๐๐ฅ๐ ๐๐ผ ๐๐ฃ๐ ๐ Designed a complete IPL management system from scratch today Started with ER diagram โ entities, relations, junction tables Converted it into models and structured database properly Then moved to routes and actual backend flow #DBMS #ChaiCode
Designed a complete IPL management system from scratch today Started with ER diagram โ entities, relations, junction tables Converted it into models and structured database properly Then moved to routes and actual backend flow #DBMS #ChaiCode @nirudhuuu @ChaiCodeHQ
๐๐ฎ๐๐ฎ ๐๐ถ๐ฑ๐ฒ ๐ฏ๐ฒ๐ด๐ถ๐ป๐ ๐ โข Creating databases and tables โข Inserting and selecting data โข Filtering records โข UPDATE table โข DELETE with WHERE โข ALTER TABLE operations โข DISTINCT, sorting, LIMIT, OFFSET โข Aggregations โข GROUP BY #DBMS #SQL #Backend #ChaiCode
๐ ER Diagram Assignment Done! Designed an Instagram-like thrift database โ focused on structure, relationships & scalability. Grateful for the guidance ๐ @Hiteshdotcom sir,@piyushgarg_dev @yntpdotme @nirudhuuu @surajtwt_ @devwithjay @ChaiCodeHQ #DBMS #SQL #LearningInPublic
IPL mangement DB Design done @surajtwt_ sir and @nirudhuuu sir was thinking to go deep but as said to make a simple desing so here it is. #DBMS #chaicode #Backend
Today I learned Dijkstraโs Algorithm โ the shortest path approach for weighted graphs, and explored Bellman-Ford to handle negative edges. Also revised DBMS Sharding & Clustering โ mastering data distribution & scalability. ๐ #DSA #DBMS #Coding
Completed my C++ journey and earned a silver badge on @hackerrank! Also diving into DBMS & SQL. ๐ Exams coming up, but I'll be back soon with more updates. Love to hear any resource recommendations! #Cplusplus #DBMS #SQL #HackerRank #letsconnect #CodingJourney
๐๐ผ๐ถ๐ป๐ & ๐๐ป๐ฑ๐ฒ๐ ๐ถ๐ป๐ด โก Todayโs class went deeper into SQL, joins, foreign keys, & constraints. Also explored indexing and how databases optimize queries behind the scenes. Designed an Instagram-like system using ER diagrams. #DBMS #SQL #Backend #ChaiCode
Starting my DBMS learning journey today. ๐ Letโs see how much time it takes me to complete this video by @lovebabbar3 and understand the core concepts properly. Consistency mode: ON ๐ #DBMS #LearningInPublic #100DaysOfCode #CSStudents
#eXtremeDBโs xFlash implements a copy-on-write (CoW), page-mapped recovery mechanism to ensure database consistency and durability delivering reliable, lower-latency transactions directly on #NANDflash without complex file systems. t.ly/sAZXH #DBMS #embeddedsystems
Daily Progress: โ Solved Linked List DSA problems: โข Detect loop โข Starting point of loop โข Length of loop โข Check palindrome ๐DBMS: โข Atomicity โข Transaction implementation Didn't finish all, but made solid progress. Stay tuned for more updates! #DSA #DBMS #100DaysOfCode
โReal-Time Versus Real Fastโ An overview of the two definitions for the term โreal-timeโ database and why we should use the original meaning. Review the article in @embedded_comp t.ly/QrWWB #RealTimeData #databasedesign #dbms #missioncriticalsystems
Something went wrong.
Something went wrong.
United States Trends
- 1. $RISE N/A
- 2. Good Sunday N/A
- 3. #BIEBERCHELLA N/A
- 4. Muhammad Qasim N/A
- 5. SimpleChain Testnet N/A
- 6. New Glenn N/A
- 7. #ImmortalCF N/A
- 8. Big Sean N/A
- 9. Billie N/A
- 10. Blessed Sunday N/A
- 11. Sinatra N/A
- 12. Bengals N/A
- 13. NO PRESSURE N/A
- 14. My Way N/A
- 15. DataIPO N/A
- 16. U SMILE N/A
- 17. BNB Chain N/A
- 18. One Less Lonely Girl N/A
- 19. #Coachella N/A
- 20. #ZNNSTILLWITHZON N/A