#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 (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
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
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
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 (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(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
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
๐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 |...
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
We've compiled a list of features to look for in a database management system if speed matters to your project: t.ly/jYHYI #extremedb #DatabaseManagement #dbms #embeddedsystems
โจ 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
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
๐ 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
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 (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
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
โ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
#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
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
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
Many #DBMS were created in the 1980โs and not written with the unique needs (slower CPUs, limited memory, no persistent storage, etc.) of #embeddedsystems in mind. #eXtremeDB was developed specifically for embedded systems. Learn more t.ly/m7lZx #EmbeddedDatabase
Embedded World is weeks away! If youโre going visit us at Hall 4, Stand 4-238. Play the fun new game Stump Steve! McObject CEO @McGuy has worked exclusively towards optimizing #DBMS for over 35 years - stump him and win! Learn more t.ly/ew-2026 #databasemanagement
In case you missed it โThe Data in Hard Real-time SCADA Systems Lets Companies Do More with Lessโ. The latest #DBMS technology allows the capture and utilization of previously out of reach data found in #missioncritical #SCADA systems in @automation_com t.ly/G9Nk_
๐๐ฟ๐ผ๐บ ๐๐ฅ๐ ๐๐ผ ๐๐ฃ๐ ๐ 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
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
Read the insightful new article "Engineering Real-Time: Lessons Learned While Chasing Determinism" part 1 in @embedded_comp t.ly/oJbaX #realtimedata #DBMS #deterministicdatabase
๐ 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
ใใฏใใใใใใพใใ็ซๆๆฅใฏในใฟใใใในใฟใผใใ็ตๅถๆ ๅ ฑใทในใใ 2ๅ็ฎใฎใใฌใผใใณใฐใ่งฃใใฆใใพใใ #ไธญๅฐไผๆฅญ่จบๆญๅฃซ่ฉฆ้จ #็ตๅถๆ ๅ ฑใทในใใ #DBMS #SQL #ๆญฃ่ฆๅ
๐๐ผ๐ถ๐ป๐ & ๐๐ป๐ฑ๐ฒ๐ ๐ถ๐ป๐ด โก 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
New Arrival! Order now shroffpublishers.com/books/97893554โฆ SQL: The Practical Guide by @keremkoseoglu with @RheinwerkComp The Practical Guide to Master Relational Databases, SQL Syntax, and Sublanguages for Effective Database Management #sql #databasemanagement #dbms #shroffpublishers
Week 11 of my learning journey ๐ Started **DBMS with Shubham Sir**. @Hiteshdotcom | @piyushgarg_dev |@nirudhuuu #DBMS #SQL #LearningJourney
What are counterfeit Knowledge Graphs? Please read: linkedin.com/pulse/counterfโฆ #KnowledgeGraph has become a confusing term that confuses unsuspecting end-users and integrators. Even more so in the age of #GenAI. #DBMS #LPG #RDBMS #Issues #CDO #CIO #CAIO #CMO #AI #RAG #GraphRAG
Just wrapped up teaching BTG 206 โ DBMS to 2nd-year Biotech & Molecular Bio students @FUHSI_Official Grateful for the chance to impact lives through tech education โ made possible by the amazing ICT team. ๐ปโจ #DBMS #Teaching #Biotech #FUHSI #EdTech #Teamwork
๐๐ฎ๐๐ฎ ๐๐ถ๐ฑ๐ฒ ๐ฏ๐ฒ๐ด๐ถ๐ป๐ ๐ โข 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
Something went wrong.
Something went wrong.
United States Trends
- 1. #WrestleMania N/A
- 2. #WrestleMania N/A
- 3. Luke Kennard N/A
- 4. Bengals N/A
- 5. Giants N/A
- 6. Pat McAfee N/A
- 7. Porter Martone N/A
- 8. #UFCWinnipeg N/A
- 9. Dexter Lawrence N/A
- 10. Orton N/A
- 11. Bianca N/A
- 12. Lakers N/A
- 13. Paige N/A
- 14. #LakeShow N/A
- 15. #IgniteTheOrange N/A
- 16. Jelly Roll N/A
- 17. Gilbert Burns N/A
- 18. Rockets N/A
- 19. Sengun N/A
- 20. Liv Morgan N/A