Bhakti-Aarti- Android app Privacy policy

 Privacy Policy Effective Date: October 4th, 2025   App Name: Bhakti Aarti   Developer: k3kventures   Contact: sultanmirzadev@gmail.com --- 1. Introduction This Privacy Policy explains how we collect, use, and protect your personal information when you use our Android application "Bhakti Aarti" ("App"). By using the App, you agree to the terms of this Privacy Policy. --- 2. Information We Collect a. Voice Input Our App may request access to your device’s microphone in order to enable voice-based search functionality. When you use this feature: - The app listens only when you activate the voice input manually.   - Your voice input is processed to understand your search query.   - We do not store or share your voice recordings or voice data. Voice data may be processed by Google's speech recognition services (or similar services) if you are using a device with Google Play Services enabled. Please refer to Google’s Privacy Policy at:   https://policies.go...

Order of SQL query execution

 In SQL, the order you write the clauses in a query is not the same as the order in which the database engine executes them.

Here’s the logical order of execution of SQL clauses:

Step

Clause

Description

1️⃣

FROM

Identifies source tables and joins data.

2️⃣

WHERE

Filters rows before grouping.

3️⃣

GROUP BY

Groups rows based on specified columns.

4️⃣

HAVING

Filters groups after aggregation.

5️⃣

SELECT

Selects columns or expressions to return.

6️⃣

DISTINCT

Removes duplicate rows from the result set.

7️⃣

ORDER BY

Sorts the result set.

8️⃣

LIMIT / OFFSET

Returns a subset of the result (pagination).


EXAMPLE:

SELECT department, COUNT(*) AS employee_count
FROM employees
WHERE status = 'active'
GROUP BY department
HAVING COUNT(*) > 10
ORDER BY employee_count DESC
LIMIT 5;


Execution order:

  1. FROM employees

  2. WHERE status = 'active'

  3. GROUP BY department

  4. HAVING COUNT(*) > 10

  5. SELECT department, COUNT(*) AS employee_count

  6. ORDER BY employee_count DESC

  7. LIMIT 5

Comments

Popular posts from this blog

DBT tool connect Athena from Local- AWS SSO

Bhakti-Aarti- Android app Privacy policy

Resolve SSL Certificate issue while pip install in Python