ar
Feedback
Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO

Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO

الذهاب إلى القناة على Telegram

Main channel https://t.me/Coding_000 Contact Admin 👉 @ILOVEU_143 for booking your exam slots Web- https://coding000.github.io/Projects/ 💯% clearance in any placement exams OffCampus -https://t.me/Offcampus_000 Discussion- https://t.me/exams_discussion

إظهار المزيد
3 368
المشتركون
لا توجد بيانات24 ساعات
-187 أيام
-4930 أيام
أرشيف المشاركات
Q - E-commerce website admin SELECT c.title AS category_title, p.title, SUM(p.stock_number) AS total_stock FROM categories c JOIN products p ON c.id = p.category_id GROUP BY c.title, p.title HAVING SUM(p.stock_number) > 10 ORDER BY category_title ASC, p.title ASC, total_stock DESC;

Antivirus code✅ Share @coding_000❤️ 🆓🆓🆓 share 😊👍
Antivirus code✅ Share @coding_000❤️ 🆓🆓🆓 share 😊👍

Give reactions...check mark/type it carefully..✅ Share our channel..to get more ans..😅✅

SELECT    DATE_FORMAT(date_field, '%Y-%m') AS month_year,    'Jobs' AS source,    COUNT(*) AS total_number FROM    jobs GROUP BY    month_year UNION ALL SELECT    DATE_FORMAT(date_field, '%Y-%m') AS month_year,    'Freelancers' AS source,    COUNT(*) AS total_number FROM    freelancers GROUP BY    month_year ORDER BY    month_year ASC,    source ASC; Freelancer code✅ @coding_000❤️

Share our channel screenshot in large groups ✅✅✅✅✅ For coding answers &  Sql 🏃🏃🏃🏃

SELECT categories.title AS category, products.title, products.stock_number AS total_stock FROM products INNER JOIN categories
SELECT   categories.title AS category,   products.title,   products.stock_number AS total_stock FROM   products INNER JOIN categories ON products.category_id = categories.id WHERE   products.stock_number > 10 ORDER BY   category ASC,   products.title ASC,   total_stock DESC;

SELECT A.email AS "email account", COUNT(O.account_id) AS "outputs", SUM(LENGTH(O.output) - LENGTH(REPLACE(O.output, ' ', '')
SELECT     A.email AS "email account",     COUNT(O.account_id) AS "outputs",     SUM(LENGTH(O.output) - LENGTH(REPLACE(O.output, ' ', '')) + 1) AS "total words",     ROUND(SUM(LENGTH(O.output) - LENGTH(REPLACE(O.output, ' ', '')) + 1) / COUNT(O.account_id), 2) AS "avg words per output" FROM accounts A LEFT JOIN results O ON A.id = O.account_id GROUP BY A.email ORDER BY A.email ASC;

Streamers code working 100 percent Share @coding_000 #CSD #CODING_000
Streamers code working 100 percent Share @coding_000 #CSD #CODING_000

SELECT c.title AS category_title, p.title, SUM(p.stock_number) AS total_stock FROM categories c JOIN products p ON c.id = p.category_id GROUP BY c.title, p.title HAVING SUM(p.stock_number) > 10 ORDER BY category_title ASC, p.title ASC, total_stock E commerce website Share @coding_000

Share our channel screenshot in large groups ✅✅✅✅✅ For coding answers &  Sql 🏃🏃🏃🏃

public List calculateInvoice(List purchasedItems, Map prices, Map discounts) {     List invoiceItems = new ArrayList<>();     for (GroceryItem purchasedItem : purchasedItems) {         String itemName = purchasedItem.getItemName();         int quantity = purchasedItem.getQuantity();         // Calculate the total price for the item, including the discount.         double price = prices.get(itemName);         double discount = discounts.getOrDefault(itemName, 0.0);         double totalPrice = price * quantity - discount * quantity;         // Create a new GroceryItem object for the invoice.         GroceryItem invoiceItem = new GroceryItem(itemName, quantity, price, totalPrice);         invoiceItems.add(invoiceItem);     }     // Sort the invoice items in ascending order by product name.     invoiceItems.sort(Comparator.comparing(GroceryItem::getItemName));     return invoiceItems; }