Answer the question
In order to leave comments, you need to log in
How to safely withdraw from Webmoney WMZ to a Sberbank ruble card?
Good afternoon, I’m interested in the question: will the monthly withdrawal of $ 600-700 to a ruble card (yes, exactly such conditions) of Sberbank attract the attention of the tax authorities?
Answer the question
In order to leave comments, you need to log in
Even the withdrawal of $ 10,000 per month will not attract the attention of the tax authorities.
Withdraw through an intermediary, exchange rates are constantly changing, it is better to follow them on the monitoring site: https://www.bestchange.ru
PS: As for the volumes, I approve as the owner of one of the exchangers, in some months the volume of transactions per month is over 1.5 million rubles on Sber. No one made any claims, the only thing was that they started calling from Sberbank with a proposal to open deposits or arrange a mortgage at a special percentage.
This can attract Sberbank employees, after which they will simply close your account and theoretically they can transfer data to the tax authorities. But it's more likely that the account will be closed.
Read this article.
Find all the answers to your questions.
dataworld.info/webmoney-to-card-free-transfer.php
It is possible like this:
SELECT `a`.*
FROM `articles` AS `a`
JOIN (
SELECT GROUP_CONCAT(DISTINCT `tag_id` ORDER BY `tag_id`) AS `tags`
FROM `articleTags`
WHERE `article_id` = :articleId
) AS `at`
JOIN (
SELECT GROUP_CONCAT(DISTINCT `tag_id` ORDER BY `tag_id`) AS `tags`, `article_id`
FROM `articleTags`
GROUP BY `article_id`
) AS `st` ON `st`.`article_id` = `a`.`id` AND `st`.`tags` = `at`.`tags`
Here it is more readable
CREATE FUNCTION is_tags_equal(article1 text, article2 text)
RETURNS boolean AS
$$
SELECT NOT EXISTS
(
(SELECT tag FROM articles_tags WHERE article = article1
EXCEPT
SELECT tag FROM articles_tags WHERE article = article2)
UNION ALL
(SELECT tag FROM articles_tags WHERE article = article2
EXCEPT
SELECT tag FROM articles_tags WHERE article = article1)
)
$$
LANGUAGE sql;
SELECT article FROM articles WHERE is_tags_equal(article, 'ArticleName') AND article != 'ArticleName';
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question