Database |> Language |> 

Standard

Contents

Definition

In contrast to an ordinary SELECT statement where the columns are fields in a table, columns in LSD are CSS selectors.

SELECT <css_selector> FROM <url>;

For an alternative grammar that’s more functional and offers additional features, learn about our pipe operator syntax.

Example

Suppose you were curious as to whether or not it is Thursday, fortunately there is a website that answers that very question and the h1 tag on the page contains the answer to our inquiry.

Run the below query yourself

SELECT h1 AS is_it_thursday FROM https://isitthursday.org/

Related: