Last updated
Last updated
The driver for provides ANSI SQL standard support. A SELECT statement can consist of the following basic clauses.
SELECT
INTO
FROM
JOIN
WHERE
GROUP BY
HAVING
UNION
ORDER BY
LIMIT
PAGESIZE LIMIT
The following syntax diagram outlines the syntax supported by the SQL engine of the provider:
Return all columns:
Rename a column:
Cast a column's data as a different data type:
Search data:
Return the number of items matching the query criteria:
Return the number of unique items matching the query criteria:
Return the unique items matching the query criteria:
Summarize data:
Retrieve data from multiple tables.
Sort a result set in ascending order:
Restrict a result set to the specified number of rows:
Parameterize a query to pass in inputs at execution time. This enables you to create prepared statements and mitigate SQL injection attacks.
13. Restrict a result set to the specified number of pages
SELECT * FROM sales_invoice lyftstartpage 1 lyftendpage 10
Do you have questions about how to use the platform? Don't worry; we've got you covered. Simply follow the quickstart instructions .
We're always happy to answer any additional questions you may have!
SELECT * FROM employee;
SELECT [age] AS MY_Age FROM address;
SELECT CAST(mobile AS VARCHAR) AS Str_Mobile FROM customer;
SELECT * FROM customer WHERE company_name = 'lyftrondata';
SELECT COUNT(*) AS TotolRows FROM customer;
SELECT COUNT(DISTINCT name) FROM customer;
SELECT DISTINCT name FROM customer;
SELECT priority, MAX(subscriptions) FROM customer GROUP BY subscriptions;
SELECT c.name, a.street FROM customer c INNER JOIN address a ON c.customer_id = a.customer_id
SELECT customer_id, subscriptions FROM customer ORDER BY subscriptions ASC
SELECT customer_id, subscriptions FROM customer LIMIT 10
SELECT * FROM incident WHERE category = @param
This section discusses the SQL syntax for the Lyftrondata driver. Our driver adheres to ANSI standards, and all of our Python drivers adhere to the Sql Alchemy framework.