Posts

Showing posts from December, 2023

Credit Card Annual Fee Reversal Tricks

 Credit Card Annual Fee Reversal Tricks For Old Existing Users : Mail Format Below Subject : Request for Reversal of Credit Card Annual Fees And GST. Dear Sir/Ma’am, I hope this email finds you well. My name is [Your Name], and I am writing to request a reversal of the annual fees and GST charged on my credit card, [Last 4 digits of Credit Card Number in XXXX… 5678 format]. I have been a loyal customer for [X] years and have always appreciated the services provided by [Credit Card Issuer]. Recently, I have encountered [briefly explain any financial challenges or unforeseen circumstances you’ve faced]. Due to these circumstances, I am finding it challenging to manage my expenses, including the annual fees associated with my credit card. I understand that [Credit Card Issuer] has policies regarding fees, but I kindly request your consideration for a reversal or waiver in this particular situation. I have been diligent in maintaining a positive payment history and believe this request...

Drop Multiple Tables Query In Sql/Mysql

DROP TABLE `categories_194147308`, `categories_194147309`, `categories_194147310`, `categories_194147313`, `categories_194147354`, `categories_194147366`, `categories_194147381`, `categories_194147392`, `categories_194147408`, `categories_194147425`, `categories_194147426`, `categories_194147428`, `categories_194147567`, `categories_194147569`, `delivery_charges`; 

Create Table Query with Unique Key Constraints

 CREATE TABLE `table_name` (   `id` bigint(11) NOT NULL AUTO_INCREMENT,   `brand_id` int(11) DEFAULT 2,   `store_id` int(11) NOT NULL UNIQUE,   `merchant_id` int(11) NOT NULL UNIQUE,   `charges` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,   `created_at` datetime DEFAULT current_timestamp(),   `modified_at` datetime DEFAULT current_timestamp(),    PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;