摘要:SQLPage 是一个开源、快速、强大的专注于构建数据为中心的应用程序的SQL-only WBE 应用构建器。它旨在帮助数据科学家、分析师和商业智能团队快速构建功能强大的数据应用,而无需担心任何传统的Web编程语言和概念。
如果您对源码&技术感兴趣,请点赞+收藏+转发+关注,大家的支持是我分享最大的动力!!!
SQLPage 是一个开源、快速、强大的专注于构建数据为中心的应用程序的SQL-only WBE 应用构建器。它旨在帮助数据科学家、分析师和商业智能团队快速构建功能强大的数据应用,而无需担心任何传统的Web编程语言和概念。

SELECT 'list' as component,'Popular websites' as title;SELECT name as title,url as link,CASE typeWHEN 1 THEN 'blue'ELSE 'red'END as color,description, icon, activeFROM website;示例二:
SELECT'chart' as component,'Quarterly Revenue' as title,'area' as type;SELECTquarter AS x,SUM(revenue) AS yFROM financesGROUP BY quarter示例三:
SELECT'form' as component,'User' as title,'Create new user' as validate;SELECTname, type, placeholder,required, descriptionFROM user_form;INSERT INTO userSELECT $first_name, $last_name, $birth_dateWHERE $first_name IS NOT NULL;示例四:
select 'tab' as component, true as center;select 'Show all cards' as title, '?' as link,$tab is null as active;selectformat('Show %s cards', color) as title,format('?tab=%s', color) as link,$tab=color as activefrom tab_example_cardsgroup by color; select 'card' as component;selecttitle, description, colorimage_url as top_image, linkfrom tab_example_cardswhere$tab is null or $tab = color;select'text' as component,sqlpage.read_file_as_text('footer.md') as contents_md 来源:IT技术资源爱好者
免责声明:本站系转载,并不代表本网赞同其观点和对其真实性负责。如涉及作品内容、版权和其它问题,请在30日内与本站联系,我们将在第一时间删除内容!