#sqlpractice 検索結果
For my first assignment, I imported flat files into SQL (named locations) and practiced writing queries to filter, sort, and group data. Seeing results instantly is so satisfying! @TDataImmersed #SQLPractice #DataSkills
MY SOLUTION i will be solving it in two ways: SELECT c.Customer_Name Customer_name, SUM(t.amount) total_amount FROM customers c JOIN transaction t ON c.Customer_id=t.Customer_id WHERE EXTRACT(YEAR FROM t.transaction_date) = '2024' GROUP BY 1; #SQLQuery #SQLPractice
WHERE yearr = '2024'; That's the end Understing the question is very important. It says "total transaction amount for each customer for the current year". -- customer -- SUM(total amount) as total_amount -- year -- join tables together #SQLQuery #SQLPractice
Hey all! Been offline for a bit, but I’ve kept practicing SQL! It’s tough at first, but with steady effort, I’m still crushing it. 💪 #DataAnalytics #Data #SQLPractice #LearningJourney
📊 SQL grind today: Tables ✔️ Data ✔️ Keys ✔️ Queries ✔️ #SQL #SQLQueries #SQLPractice #LearnSQL #MySQL #PostgreSQL #SQLDeveloper #Database #DatabaseDesign #QueryLanguage #SQLTips
Day 4 of my LeetCode SQL Journey! Today I solved 2 more SQL questions and every query is making me better at thinking logically and writing cleaner code. Consistency is the key, and I’m enjoying the process of improving step by step. #LeetCode #SQLPractice #DataScience
I’m beyond excited and deeply grateful to the amazing team at @LearnwithWiDa and our facilitator @ibn_wittig for offering this free mentorship. Here’s to more growth and more data wins ahead! #DataAnalytics #SQLPractice #WomenInTech #LearnWithWIDA #GratitudeJourney
⚡️Just me, MySQL Workbench, and a challenge of 50+ SQL questions. Diving deep into subqueries, joins, and schema design. #SQLPractice #MySQL #BuildInPublic #100xDevs #SQLQueries #DatabaseDesign #WebDev #BackendDevelopment #LearningToCode #CodeNewbie #DevJourney #LearnSQL #MySQL
🚀 Day 2 of learning #OracleSQL with SQL*Plus 📌 Practiced inserting NULLs, creating tables, & using Primary Keys 💻 Single table queries on EMP table Loving the progress! 🔥 #Day2 #SQLPractice #100DaysOfCode #BCAStudent #LearnSQL #SQLQueries #DatabaseSkills #TechJourney
Learn SQL the smart way. Practice > Theory. ✅ mode.com/sql-tutorial – Interactive lessons ✅ stratascratch.com – Interview-style problems ✅ leetcode.com/problemset/dat… – Technical SQL challenges Type ‘SQL PRACTICE’ if you know any of them. #SQLPractice #DataSkills
Thread of me diving into HackerRank to level up my SQL skills. Let’s see how far I can go! hackerrank.com/profile/muneza… #DataAnalytics #SQLPractice
Took on “The Blunder” on @hackerrank ... Let’s just say the problem name was accurate 😂 But it helped me learn the REPLACE() function — Small mistake, solid lesson 🙌 #SQLPractice #BuildInPublic #HackerRank #TechTwitter
SQL mock test done ✔️ Learning never stops! 🚀 #SQL #SQLskills #SQLpractice #SQLmocktest #codinglife #programmerlife #techworld #learnprogramming #neverstoplearning #hebbalbranch #besanttechnologies #sahakarnagar @besanttech
Thread of me diving into HackerRank to level up my SQL skills. Let’s see how far I can go! hackerrank.com/profile/muneza… #DataAnalytics #SQLPractice
Today's SQL Task: Write a query to get count of employees in each department. SELECT department, COUNT(*) FROM employees GROUP BY department; #SQLPractice #Database #TechLearning #DataScience
Took on “The Blunder” on @hackerrank ... Let’s just say the problem name was accurate 😂 But it helped me learn the REPLACE() function — Small mistake, solid lesson 🙌 #SQLPractice #BuildInPublic #HackerRank #TechTwitter
📊 SQL grind today: Tables ✔️ Data ✔️ Keys ✔️ Queries ✔️ #SQL #SQLQueries #SQLPractice #LearnSQL #MySQL #PostgreSQL #SQLDeveloper #Database #DatabaseDesign #QueryLanguage #SQLTips
Advanced MySQL Practice — Session 1 🧩 Subqueries Mastery: • Returning Single Value • Returning List of Values 🔜 Next Up: Subqueries with ALL & ANY operators — boost your SQL game! #MySQL #SQLPractice #Subqueries #Database #LearningByDoing GitHub 👇:github.com/kshitijkatore
⚡️Just me, MySQL Workbench, and a challenge of 50+ SQL questions. Diving deep into subqueries, joins, and schema design. #SQLPractice #MySQL #BuildInPublic #100xDevs #SQLQueries #DatabaseDesign #WebDev #BackendDevelopment #LearningToCode #CodeNewbie #DevJourney #LearnSQL #MySQL
Learn SQL the smart way. Practice > Theory. ✅ mode.com/sql-tutorial – Interactive lessons ✅ stratascratch.com – Interview-style problems ✅ leetcode.com/problemset/dat… – Technical SQL challenges Type ‘SQL PRACTICE’ if you know any of them. #SQLPractice #DataSkills
🚀 Day 2 of learning #OracleSQL with SQL*Plus 📌 Practiced inserting NULLs, creating tables, & using Primary Keys 💻 Single table queries on EMP table Loving the progress! 🔥 #Day2 #SQLPractice #100DaysOfCode #BCAStudent #LearnSQL #SQLQueries #DatabaseSkills #TechJourney
✅ Day 2 Filtering data like a pro! 🔍 Today I learned how to use AND, OR, NOT, LIKE, and ORDER BY in Oracle SQL. Data is starting to make sense now! 📈 #Day2 #SQLPractice #DataFiltering #OracleSQL #TechLearning @OracleDatabase
Dear @popsql I'm unable to access my student account benefits provided by you. I already mailed you the matter @ [email protected] #SQLPractice #DataScience #SQL
For my first assignment, I imported flat files into SQL (named locations) and practiced writing queries to filter, sort, and group data. Seeing results instantly is so satisfying! @TDataImmersed #SQLPractice #DataSkills
📊 SQL grind today: Tables ✔️ Data ✔️ Keys ✔️ Queries ✔️ #SQL #SQLQueries #SQLPractice #LearnSQL #MySQL #PostgreSQL #SQLDeveloper #Database #DatabaseDesign #QueryLanguage #SQLTips
MY SOLUTION i will be solving it in two ways: SELECT c.Customer_Name Customer_name, SUM(t.amount) total_amount FROM customers c JOIN transaction t ON c.Customer_id=t.Customer_id WHERE EXTRACT(YEAR FROM t.transaction_date) = '2024' GROUP BY 1; #SQLQuery #SQLPractice
WHERE yearr = '2024'; That's the end Understing the question is very important. It says "total transaction amount for each customer for the current year". -- customer -- SUM(total amount) as total_amount -- year -- join tables together #SQLQuery #SQLPractice
Hey all! Been offline for a bit, but I’ve kept practicing SQL! It’s tough at first, but with steady effort, I’m still crushing it. 💪 #DataAnalytics #Data #SQLPractice #LearningJourney
Day 4 of my LeetCode SQL Journey! Today I solved 2 more SQL questions and every query is making me better at thinking logically and writing cleaner code. Consistency is the key, and I’m enjoying the process of improving step by step. #LeetCode #SQLPractice #DataScience
Top 12 Platforms to Practice SQL itinai.com/top-12-platfor… #SQLPractice #LearnSQL #DataSkills #SQLTraining #TechEducation #ai #news #llm #ml #research #ainews #innovation #artificialintelligence #machinelearning #technology #deeplearning @vlruso
Took on “The Blunder” on @hackerrank ... Let’s just say the problem name was accurate 😂 But it helped me learn the REPLACE() function — Small mistake, solid lesson 🙌 #SQLPractice #BuildInPublic #HackerRank #TechTwitter
SQL mock test done ✔️ Learning never stops! 🚀 #SQL #SQLskills #SQLpractice #SQLmocktest #codinglife #programmerlife #techworld #learnprogramming #neverstoplearning #hebbalbranch #besanttechnologies #sahakarnagar @besanttech
I’m beyond excited and deeply grateful to the amazing team at @LearnwithWiDa and our facilitator @ibn_wittig for offering this free mentorship. Here’s to more growth and more data wins ahead! #DataAnalytics #SQLPractice #WomenInTech #LearnWithWIDA #GratitudeJourney
⚡️Just me, MySQL Workbench, and a challenge of 50+ SQL questions. Diving deep into subqueries, joins, and schema design. #SQLPractice #MySQL #BuildInPublic #100xDevs #SQLQueries #DatabaseDesign #WebDev #BackendDevelopment #LearningToCode #CodeNewbie #DevJourney #LearnSQL #MySQL
SQL Assignments for Beginners - We have over ten years of experience and have completed over a thousand SQL assignments with solutions. udaipurwebdesigner.com/sql-assignment… #UdaipurWebDesigner #SQLLearning #SQLPractice #BeginnerSQL #SQLExercises #DatabaseFundamentals #LearnSQLFromHome
🚀 Day 2 of learning #OracleSQL with SQL*Plus 📌 Practiced inserting NULLs, creating tables, & using Primary Keys 💻 Single table queries on EMP table Loving the progress! 🔥 #Day2 #SQLPractice #100DaysOfCode #BCAStudent #LearnSQL #SQLQueries #DatabaseSkills #TechJourney
Something went wrong.
Something went wrong.
United States Trends
- 1. Mamdani 265K posts
- 2. #ItsGoodToBeRight N/A
- 3. Kandi 3,939 posts
- 4. Mama Joyce N/A
- 5. #HMGxBO7Sweeps 1,341 posts
- 6. Egg Bowl 2,067 posts
- 7. Ukraine 597K posts
- 8. #BY9sweepstakes N/A
- 9. Adolis Garcia 1,782 posts
- 10. #AleMeRepresenta N/A
- 11. Putin 208K posts
- 12. Wisconsin 8,435 posts
- 13. Richie Saunders N/A
- 14. El Bombi N/A
- 15. #DanSeats N/A
- 16. Jonah Heim N/A
- 17. Kiffin 11.2K posts
- 18. Koloko N/A
- 19. DON'T TRADE ON MARGIN 1,151 posts
- 20. Geraldo 2,769 posts