Advertisement
Kapa3a

Fix eroare FROM block_exception

Nov 24th, 2023
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.48 KB | Source Code | 0 0
  1. Eroare :
  2.  
  3. Load:  DirectQuery failed(SELECT login FROM block_exception)
  4.  
  5. te duci in
  6. Navicat--->Account--->Query--->+ New query
  7.  
  8. Si facem tabel nou doar copiem ce este mai jos
  9. apasam Run dupa Save:
  10.  
  11.  
  12.  
  13.  
  14. SET FOREIGN_KEY_CHECKS=0;
  15.  
  16. -- ----------------------------
  17. -- Table structure for block_exception
  18. -- ----------------------------
  19. DROP TABLE IF EXISTS `block_exception`;
  20. CREATE TABLE `block_exception` (
  21.   `login` int(20) DEFAULT NULL
  22. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement