Telegram Web Link
Our story

Google has recently released a storybook feature for Gemini that can be used for creating personalized, illustrated stories.

I used it to share our story ❤️

5 years and counting...

@bigdataspecialist
15👍2🤩1
Hello Everyone,

I’m flying to Lisbon tomorrow morning on a business trip ✈️.

If any of you are around and would like to meet up, feel free to send me a message, would love to connect! 😊
👍42
This media is not supported in your browser
VIEW IN TELEGRAM
23🔥4👍3🥰1
SQL/MySQL Learning Series: Day 1️⃣1️⃣
🔹 UPDATE – Modifying Existing Data

🧠 Once you've inserted data, real-world needs often change.
Need to correct a typo or give someone a raise? That’s where UPDATE comes in!

---

📌 Syntax:

UPDATE table_name
SET column1 = value1, column2 = value2
WHERE condition;


Always include WHERE to avoid updating *all* rows by accident!

---

📌 Example:
Alice got a raise! Let’s update her salary:

UPDATE employees
SET salary = 75000.00
WHERE name = 'Alice';


Updated result:

+----+---------+------------+----------+------------+
| id | name | department | salary | hire_date |
+----+---------+------------+----------+------------+
| 1 | Alice | IT | 75000.00 | 2022-03-01 |
| 2 | Bob | HR | 55000.00 | 2021-11-15 |
| 3 | Charlie | Finance | 60000.00 | 2023-01-10 |
| 4 | Diana | IT | 80000.00 | 2020-08-22 |
+----+---------+------------+----------+------------+


---

🚨 Warning: Without a WHERE clause, all rows will be updated!
Double-check before running your query.

Next: We’ll learn how to remove data with DELETE.


#SQL #MySQL #SqlLearningSeries

👉Join @bigdataspecialist for more👈
SQL/MySQL Learning Series: Day 1️⃣2️⃣
🔹 DELETE – Removing Data

🗑 Sometimes, data needs to go – whether it’s outdated, incorrect, or no longer needed.
That’s where DELETE steps in.

---

📌 Syntax:

DELETE FROM table_name
WHERE condition;


Just like with UPDATE, never forget the `WHERE` clause unless you *want* to delete everything!

---

📌 Example:
Let’s remove Bob from the employees table:

DELETE FROM employees
WHERE name = 'Bob';


Result:

+----+---------+------------+----------+------------+
| id | name | department | salary | hire_date |
+----+---------+------------+----------+------------+
| 1 | Alice | IT | 75000.00 | 2022-03-01 |
| 3 | Charlie | Finance | 60000.00 | 2023-01-10 |
| 4 | Diana | IT | 80000.00 | 2020-08-22 |
+----+---------+------------+----------+------------+


---

💣 Want to delete *everything* from a table?

DELETE FROM employees;


Or faster (but irreversible):

TRUNCATE TABLE employees;


Use with caution! ⚠️

#SQL #MySQL #SqlLearningSeries

👉Join @bigdataspecialist for more👈
5🎉1
Yesterday was Linux's birthday. Can you guess how old is Linux now?
Anonymous Quiz
10%
17
26%
28
32%
34
33%
40
👍2🤔1
Cool API quick reference PDF 👇
🔥4
🚀 Give Name To Our Platform! 🚀

Hey friends! 👋

Remember the platform I mentioned earlier – the one that we are building and that will share free courses, books, coupons, APIs and more for programmers? Well, it’s almost ready… but it still needs a name! 🌐

Name needs to be short and catchy. Drop your best ideas in the comments. The winning entry will not only get a Amazon/Google/Flipkart gift card or a paid course of your choice, but will also have the bragging rights of saying:
I named that platform!

💡🔥

Let’s see your creativity! 🙌

PS. to check if that domain name is taken you can use namecheap

Love from @bigdataspecialist ❤️
5
Forwarded from Cool GitHub repositories
FreeDomain

DigitalPlat FreeDomain is a nonprofit initiative that provides free domain names under several non-standard TLDs for everyone. You can register a domain through their dashboard and manage it using your preferred DNS provider—like Cloudflare, FreeDNS, or Hostry.

Creator:   DigitalPlatDev
Stars ⭐️:  89,000
Forked by:  2,000

Github Repo:
https://github.com/DigitalPlatDev/FreeDomain
  
#freedomain      
    
Join @github_repositories_bds for more cool repositories. This channel belongs to @bigdataspecialist group
5
2025/10/19 20:40:49
Back to Top
HTML Embed Code: