Mercurial > hg > dotemacs
view elpa/sql-indent-1.4/test-data/pr60.sql @ 198:542bdd6b7739
sql-indent: replace with newer ELPA version
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Sun, 08 Dec 2019 14:39:27 -0500 |
parents | |
children |
line wrap: on
line source
create or replace algorithm = undefined definer = user@localhost sql security definer view myview as select distinct table1.fielda as firstfield, table2.fieldb as secondfield from table1 join table2 on table1.table1id = table2.fktable1; create temporary table if not exists foo as select distinct table1.fielda as firstfield, table2.fieldb as secondfield from table1 join table2 on table1.table1id = table2.fktable1; -- local variables: -- mode: sql -- sql-product: mysql -- end: