Advertisement
Talilo

sql-like.sql

Jan 18th, 2024
1,198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.39 KB | None | 0 0
  1. -- https://learnsql.com.br/blog/como-usar-um-coringa-sql/
  2. -- create
  3. CREATE TABLE Tarefas (
  4.   Id INTEGER PRIMARY KEY AUTO_INCREMENT,
  5.   titulo TEXT NOT NULL,
  6.   texto TEXT NOT NULL
  7. );
  8.  
  9. -- insert
  10. INSERT INTO Tarefas VALUES ( 0,'Cursps', 'fazer curso de hardware');
  11. INSERT INTO Tarefas VALUES ( 0,'Cursos', 'fazer curso de SO');
  12.  
  13. -- fetch
  14. SELECT * FROM Tarefas where texto like "%so";
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement